@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@900&family=Russo+One&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    background-color: #f0f0f0;
    
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Maven Pro', sans-serif;
    
}
#wrapper{
    scroll-snap-type: y mandatory;
}
#wrapper>section{
    height: 100vH;
    scroll-snap-align: start;
    scroll-snap-stop: always
}
section#header {
    width: 100vW;
    position: relative;
    /*font-family: Arial, Helvetica, sans-serif;*/
    background-image: url('public/pictures/headerBg.png');
    background-position: center center;
    box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, .7);
}

section#header h1{
    color: #052f5f;
    font-size: 50px;
    font-weight:bolder
}
section#header h2{
    color: #17bebb;
    font-size: 45px;
    font-weight:bolder
}

#who{
    /*background-image: url('./circuit-board-2.png')*/
    background-image: url('public/pictures/bc-city-3.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-shadow:  inset 0px 5px 50px 0px rgb(0 0 0 / 20%);

}
#who .card{
    position: relative;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
    z-index: 1;
    border: 1px solid rgba(43, 43, 43, 0.568);

}
#who .card .card-body{
    z-index: 9999;
}
#who .card::before{
    position: absolute;
    content: ''; 
    background: inherit;
    background-image: url('public/pictures/bc-city-3.jpg');
    background-position: center center;
    background-attachment: fixed;
    /*background-image: url('./circuit-board-2.png')*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 3000px rgba(150, 150, 150, 0.192);
    filter: blur(20px);
    border-radius: 15px;
}
#who .card h2{
    font-weight: bold;
    font-size: 35px;
    color: #052f5f;
    text-transform:capitalize;
}
#who .card p{
    font-size: 1.2rem;
    /*background-color: rgba(250,250,250,.1);*/
    padding: 10px;
    border-radius:3px;
}
#products{
    /*background-image: url('./night.jpg');*/
    background-image: url('public/pictures/Cityscape_Sunset.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-attachment: fixed;

}
#products .card .card-img-top{
    margin: 10px auto;
}
#products .card{
    position: relative;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
    z-index: 1;
    border: 1px solid rgba(43, 43, 43, 0.568);

}
#products .card::before{
    position: absolute;
    content: ''; 
    background: inherit;
    /*background-image: url('./night.jpg');*/
    background-image: url('public/pictures/Cityscape_Sunset.jpg');
    background-position: center center;
    background-attachment: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 3000px rgba(150, 150, 150, 0.192);
    filter: blur(20px);
    border-radius: 15px;
    z-index: -1;
}

#products .card p{
    /*color: white;
    font-weight: bold;*/
    font-size: 1.1em;
}

#products h2,
#products h5{
    color: #052f5f;
    text-transform: capitalize;
    font-weight: bolder;
}

#services{
    /*background-image: url('./Cityscape_Sunset.jpg');*/
    background-image: url('public/pictures/night.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-attachment: fixed;

}

#services .card{
    position: relative;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
    z-index: 1;
    border: 1px solid rgba(43, 43, 43, 0.568);

}
#services .card::before{
    position: absolute;
    content: ''; 
    background: inherit;
    /*background-image: url('./Cityscape_Sunset.jpg');*/
    background-image: url('public/pictures/night.jpg');
    background-position: center center;
    background-attachment: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 3000px rgba(150, 150, 150, 0.192);
    filter: blur(100px);
    border-radius: 15px;
    z-index: -1;
}

#services .card img{
    height: 60px;
}

#contatti{
    background-image: url('public/pictures/mmmmm.png');
    background-repeat: repeat;
    background-position: top center;
    background-size: contain;
}

#contatti h3{
    color: #052f5f
}


#gescon .modal-body .card i{
    color: white;
    background-color:#052f5f;
    text-align: center;
    width: 50px;
    height:50px;
    display: inline-block;
    border-radius:50%;
    z-index: 9999;
    box-shadow: 3px 3px 0px -1px #2777d1;
}
#gescon .modal-body .card b{
    color:#052f5f;
}
#gescon .modal-body .card i::before{
    line-height: 50px;    
}

.pricingTable {
    text-align: center;
    background: #fff;
    margin: 0 -15px;
    box-shadow: 0 0 10px #ababab;
    padding-bottom: 40px;
    border-radius: 10px;
    color: #cad0de;
    transform: scale(1);
    transition: all .5s ease 0s
}

.pricingTable:hover {
    transform: scale(1.05);
    z-index: 1
}

.pricingTable .pricingTable-header {
    padding: 40px 0;
    background: #f5f6f9;
    border-radius: 10px 10px 50% 50%;
    transition: all .5s ease 0s
}

.pricingTable:hover .pricingTable-header {
    background: #ff9624
}

.pricingTable .pricingTable-header i {
    font-size: 50px;
    color: #858c9a;
    margin-bottom: 10px;
    transition: all .5s ease 0s
}

.pricingTable .price-value {
    font-size: 35px;
    color: #ff9624;
    transition: all .5s ease 0s
}

.pricingTable .month {
    display: block;
    font-size: 14px;
    color: #cad0de
}

.pricingTable:hover .month,
.pricingTable:hover .price-value,
.pricingTable:hover .pricingTable-header i {
    color: #fff
}

.pricingTable .heading {
    font-size: 24px;
    color: #ff9624;
    margin-bottom: 20px;
    text-transform: uppercase
}

.pricingTable .pricing-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px
}

.pricingTable .pricing-content ul li {
    line-height: 30px;
    color: #a7a8aa
}

.pricingTable .pricingTable-signup a {
    display: inline-block;
    font-size: 15px;
    color: #fff;
    padding: 10px 35px;
    border-radius: 20px;
    background: #ffa442;
    text-transform: uppercase;
    transition: all .3s ease 0s
}

.pricingTable .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #ffa442
}

.pricingTable.blue .heading,
.pricingTable.blue .price-value {
    color: #4b64ff
}

.pricingTable.blue .pricingTable-signup a,
.pricingTable.blue:hover .pricingTable-header {
    background: #4b64ff
}

.pricingTable.blue .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #4b64ff
}

.pricingTable.red .heading,
.pricingTable.red .price-value {
    color: #ff4b4b
}

.pricingTable.red .pricingTable-signup a,
.pricingTable.red:hover .pricingTable-header {
    background: #ff4b4b
}

.pricingTable.red .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #ff4b4b
}

.pricingTable.green .heading,
.pricingTable.green .price-value {
    color: #40c952
}

.pricingTable.green .pricingTable-signup a,
.pricingTable.green:hover .pricingTable-header {
    background: #40c952
}

.pricingTable.green .pricingTable-signup a:hover {
    box-shadow: 0 0 10px #40c952
}

.pricingTable.blue:hover .price-value,
.pricingTable.green:hover .price-value,
.pricingTable.red:hover .price-value {
    color: #fff
}
table.table-dark{

    --bs-table-striped-bg:#0b4280!important;
}
table.table-dark tr>td,
table.table-dark tr>th{
    background-color: #052f5f!important;
}