@import 'https://fonts.googleapis.com/css?family=Lato|Montserrat';


body{
    margin: 0;
    background-color: #fff;
    font-family: 'Lato', sans-serif, sans;
}
img{
    border: 0;
    max-width: 100%;
}
a{
    text-decoration: none;
}
header{
    max-width: 1200px;
    margin: auto; 
    display: grid;
    padding: 10px; 
}
header img{
    margin: 10px;
    max-height: 100px; 
}
header > div{
    text-align: center;
    display: grid;
    align-items: center;
}
header .contact{
    padding: 10px;
    color: #294581;
    font-size: 20px;
}
header .contact a{
    text-decoration: none;
    color: #294581;
    display: inline;
}
.page{
    background-image: url('images/niftylift.jpg');
    background-position: center center;
    background-size: cover;
    min-height: 800px; 
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8) inset;
}
.page .top{
    background-color: rgba(0,0,0,0.2);

}
.top{
    background-color: #264380;
    line-height: 30px; 
    color: #fff;
    font-family: Montserrat;
    font-weight: 500;
    text-align: center;
}

.top a {
    color: #fff;
    transition: color .15s;
}
.top a:hover{
    color: #00AEEF;
}
.nav{
    padding: 10px;
}
.contact img{
    height: 30px; 
    vertical-align: middle;
}
.top > div .contact{
    padding: 10px; 
}
.page .titles {
    padding: 5vw 0;
}
.page .titles>div:first-of-type{
    background-color: rgba(0,0,0,0.2);
    padding: 5vw;
}
.page .titles h1{
    color: rgb(13, 255, 219);
    font-weight: 400;
    font-size: clamp(1rem, 10vw, 3rem); 
    text-shadow: 2px 2px  rgba(0,0,0,0.2);
}
.page .titles p{
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
}
.maintext{
    max-width: 800px; 
    margin: auto;
    padding: 50px;
    color: #444;
    line-height: 1.7;

}
.maintext h1{
    color: #264380;
    font-weight: normal;
}
.maintext a{
    color: #00AFF0;
}
.maintext a:hover{
    color: #000;
}
.contacts{
    background-color: #264380;
    color: #fff;
}
.contacts a{
    color: #fff;
    background-color: transparent;
    transition: 0.2s;
}
.contacts > div{
    max-width: 800px;
    margin: auto;
    padding: 50px;
    line-height: 1.7;
}
.contacts a:hover{
    background-color: #03B0F0;
}
.white{
    background-color: #fff;
	padding: 100px 0; 
}
.logos {
	text-align: center;
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
}
.logos div{
	vertical-align:middle; 
	flex: 1 1 auto;
	width: 160px;
}
.logos img {
	max-width: 160px; 
}
.cherrypickers{
    display: grid;
    gap: 20px;
    margin-bottom: 50px; 
}
.cherrypickers > div{
    padding: 20px; 
    color: #444;
}
.cherrypickers > div h2,
.cherrypickers > div h4{
    text-align: center; 
    font-weight: normal;
}
.cherrypickers > div ul{
    width: fit-content;
    margin: auto;
}
.cherrypickers > div h2{
    color: #00AFF0;
}
.cherrypickers > div h4{
    font-size: 24px; 
}
.cherrypickers img{
    margin: auto;
    display: block;
}
.iw{
    font-size: 12px;
    text-align: right;
    padding: 5px 20px ;
}
.iw a{
    color: #666;
}





@media only screen and ( min-width: 800px ) {
    header{
        grid-template-columns: 1fr 1fr;
    }
    .top{
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
     .top > div{
        max-width: 1400px; 
        margin: auto; 
        display: flex;
        padding: 15px; 
    }
    .nav{
        padding: 20px;
    }
    .nav a{
        padding: 0 10px;
    }
    .top > div .contact{
        padding: 20px; 

    }

     nav{
        margin-left: auto;
        display: flex
    }
    .page .titles{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 5vw;
    }
    .page .titles>div:first-of-type{
        background-color: rgba(0,0,0,0.2);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        padding: 5vw;
        border-radius: 10px; 
    }
    .cherrypickers{
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0 20px; 
        overflow: hidden;
    }
    .cherrypickers > div {
        border: 1px solid #00AFF0;
    }
    .cherrypickers > div > div:nth-of-type(2) img{
        height: 250px;
        object-fit: contain;
        transition: transform .2s;
    }
    .cherrypickers > div > div:nth-of-type(2) img:hover{
        transform: scale(2);
        z-index: 20;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}
.cherrypickers > div:nth-of-type(1) > div:nth-of-type(2) img:hover{
    transform: scale(2) translate(6vw, 0);
}
.cherrypickers > div:nth-of-type(3) > div:nth-of-type(2) img:hover{
    transform: scale(2) translate(-4vw, 0);

}
}



@media only screen and ( min-width: 1400px )and ( min-height: 800px ) {
    .page{
        background-attachment: fixed;
    }
}

@media only screen and ( max-width: 800px ) {
    .top > div a{
        display: block;
    }

}