html {
    scroll-behavior: smooth;
}

.bar {
    background-color: #171717;
    color: #fff;
}

.my--title{
    display: inline-block;
    width: 100%;
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 50px;
}

.my--subtitle{
    display: inline-block;
    width: 100%;
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media screen and (max-width:1280px){
    .my--title{
       font-size: 30px;
       margin-bottom: 15px;
       text-align: center;
    }

    .my--subtitle{
        font-size: 25px;
    }
}

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  
    
}
.modal.open {
visibility: visible;
opacity: 1;
transition-delay: 0s;
}
.modal-bg {
position: absolute;
background: rgba(0, 0, 0, 0.432);
width: 100%;
height: 100%;
}
.modal-container {
    border-radius: 30px;
    background: #fff;
    position: relative;
    padding: 30px;
    max-width: 700px;
    margin-left: 15px;
    margin-right: 15px;
}

.modal-container ul{
    margin: 20px 0;
}

.modal-container ul li{
    padding-left: 15px;
    margin: 5px 0;
    position: relative;
}

.modal-container.grey-theme ul li{
    color: #000;

}

.modal-container.black-theme ul li{
    color: #fff;

}

.modal-container ul li:before{
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    width: 10px;
}

.modal-container.grey-theme ul li:before{
    background-color: #000;
}

.modal-container.black-theme ul li:before{
    background-color: #fff;
}

.modal-container.black-theme{
    background-color: #000;
}

.modal-container h2{
    margin-bottom: 15px;
    text-align: center;
    margin-top: 25px;
}

.modal-container.black-theme h2,
.modal-container.black-theme p{
    color: #fff;
}

.modal-container.grey-theme h2,
.modal-container.grey-theme p{
    color: #000;
}

.modal-container.grey-theme{
    background-color: #D8D8D8;
}

.modal-container .modal-inner-link{
    display: inline-block;
    padding: 10px 25px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 20px;
    transition: 0.2s;
}

.modal-container .modal-inner-link:hover{
    opacity: 0.5;
}

.modal-container.grey-theme .modal-inner-link{
    background-color: #000;
    color: #fff;
}

.modal-container.black-theme .modal-inner-link{
    background-color: #fff;
    color: #000;
}

.modal-close {
position: absolute;
right: 15px;
top: 15px;
outline: none;
appearance: none;
background: none;
border: 0px;
font-weight: bold;
cursor: pointer;
}

.modal-close:hover,
.modal-close:focus{
    background: none;
    border: none;

}

.banner {
    background-color: #171717;
    color: #fff;
    overflow: hidden;
}

.banner .steps img {
    width: 25px;
    height: fit-content;
    margin: auto 10px;
}

button {
    cursor: pointer;
}

.grey {
    color: #5A5A5A;
}


.menu--close{
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
}

#myForm input {
    background-color: #000;
    border: none;
    border-bottom: 1px solid #5A5A5A;
    color: #fff;
    cursor: pointer;
}

#menuToggle {
   display: block;
   z-index: 1;
   -webkit-user-select: none;
   user-select: none;
}
 
#menuToggle a {
   text-decoration: none;
   color: #232323;
   transition: color 0.3s ease;
}
 
#menuToggle a:hover {
   color: tomato;
}
 
#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 27px;
    height: 2px;
    margin-bottom: 7px;
    position: relative;
    background: #fff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}
 
#menuToggle span:first-child {
    transform-origin: 0% 0%;
}
 
#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menu {
    position: fixed;
    border-radius: 0px;
    margin: 0;
    padding: 0;
    padding: 50px;
    width: 100%!important;
    height: calc(100% - 57px)!important;
    padding-top: 55px;
    background: #171717;
    top: 57px;
    left: 0px;
    z-index: 1000;
}
 
#menu li {
    font-size: 24px;
    color: #fff;
}

#menu li.list {
    margin-top: 20px;
    color: #5A5A5A;
}

#menu li.list:hover {
    font-weight: 900;
    color: #fff;
    text-decoration: underline;
}

#menu li img {
    width: 14px;
    margin-right: 6px;
}

#menu li small {
    font-size: 12px;
}


#menuToggle .social_icons img{
    width: 22px;
    margin-top: 30px;
    margin-right: 20px;
}

.menu_desktop a {
    text-decoration: none;
    color: #5A5A5A;
    transition: color 0.3s ease;
    margin-left: 10px;
}

.menu_desktop a:hover {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}


@media screen and (max-width: 700px) {

    .cards.row{
        flex-wrap: wrap;
    }

    section .acc{
        margin-bottom: 10px;
        max-width: 100%;
    }

    section .acc h4{
        margin-top: 10px;
    }
    
}

button {
    border-radius: 11px;
    padding: 0px 16px;
    height: 28px;
}

button.white {
    background-color: #fff;
    border: 1px solid #fff;
}

button.black {
    background-color: #171717;
    border: 1px solid #171717;
    color: #fff;
}

.gradient-text {
    background-color: red;
    background-image: linear-gradient(15deg, #909090, #191919);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

section .card {
    padding: 20px 20px;
    border-radius: 20px;
}

section.statistics {
    position: relative;
}

.square-s {
	width: 34px;
	height: 34px;
	border: 1px solid #171717;
    position: absolute;
}

.square-m {
	width: 98px;
	height: 98px;
	border: 1px solid #171717;
    position: absolute;
}

.square-l {
	width: 140px;
	height: 140px;
	border: 1px solid #171717;
    position: absolute;
}

p.small {
    font-size: 9px;
    line-height: 11px;
    color: #5A5A5A;
}

section.price {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

section.price .square-s {
    transform: rotate(45deg);
}

section.price .square-l {
    transform: rotate(45deg);
}

section.price .price_cards .individual-card{
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}

section.price .price_cards .individual-card h3{
    font-size: 30px;
}

section.price .price_cards .individual-card h3 span{
    font-size: 20px;
    line-height: 20px!important;
    color: rgb(148, 148, 148);
}

section.price .price_cards .individual-card p{
   font-size: 20px;
}

@media screen and (max-width: 991px){
    section.price .price_cards .individual-card h3{
        font-size: 20px;
    }

    section.price .price_cards .individual-card h3 span,
    section.price .price_cards .individual-card p{
        font-size: 16px;
    }
}



section.price .card {
    margin-top: 0px;
    z-index: 1;
    transition: 0.2s;
    position: relative;
    cursor: pointer;
}
section.price .card:hover{
    transform: translateY(-20px) scale(1.05);
    z-index: 2;
    box-shadow: 15px 10px 25px rgba(0, 0, 0, 0.342);
}
section.price .price_cards .card p.grey {
    color: #5A5A5A;
}

section.price .price_cards .card p:not(.grey){
    padding-right: 20px;
}

section.price .card.card--small h2{
    font-size: 36px;
    line-height:normal;
    margin-bottom: 10px;
}

@media screen and (max-width: 991px){
    section.cards .card_1{
        order: 1
    }
    section.cards .card_2{
        order: 2
    }
    section.cards .card_3{
        order: 3
    }
    section.cards .card_4{
        order: 4
    }
    section.cards h2 {
        font-size: 24px;
    }
    section.price .card.card--small h2{
        font-size: 25px;
    }
}

@media screen and (max-width: 767px){
    section.price .card.card--small h2 {
        font-size: 16px!important;
    }
}

@media screen and (max-width: 576px){
   
    section.cards h2 {
        font-size: 18px;
    }

    section.cards p {
        width: 90%!important;
    }
}

section.contact form input {
    border-bottom: 1px solid #171717;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

section.contact form input[type="text"] {
    margin-top: 20px;
    height: 24px;
}

footer {
    background-color: #000;
    color: #fff;
    font-size: 12px;
}
footer .desktop_content {
    padding: 110px 0px 70px;
}

footer .footer_menu_desktop a {
    color: #5A5A5A;
    font-size: 24px;
}

footer .footer_menu_desktop a li:hover {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

footer .footer_menu_desktop a li {
    margin-bottom: 30px;
}

footer .desktop_content p.small {
    font-size: 16px;
}

footer .under_icons {
    margin-top: 20px;
}

footer .under_icons a li {
    margin-top: 20px;
}

footer .under_icons a p.small {
    color: #fff;
    line-height: inherit;
}

hr {
    width: 100%;
    height: 1px;
    background-color: #5A5A5A;
    margin-block-start: 0em;
    margin-block-end: 0em;
    border-width: 0px;
}


.shake {
    animation: shake 0.5s;
    animation-iteration-count: 1;
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.black_card_gradient:hover {
	background: linear-gradient(-45deg, #535353, #000, #535353, #000);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
}

.light_card_gradient:hover {
	background: linear-gradient(-45deg, #D9D9D9, #fff, #D9D9D9, #fff);
	background-size: 400% 400%;
	animation: gradient 10s ease infinite;
}
 
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.underline {
    text-decoration: underline;
}

.cookies {
    position: fixed;
    bottom: 0px;
    border-radius: 80px 0px 0px 0px;
    background-color: #fff;
    padding: 40px 0px;
    width: 100%;
    font-size: 24px;
    z-index: 101;
}

.cookies .content a {
    color: #000;
}


