* {
    box-sizing: border-box;
    max-width: 1200px;    
}

html {
    background: #E5E5E5;
}

body {
	margin: 0;  
}

h2, h4, p {
	margin-block-start: 0; 
	margin-block-end: 0;
}

.screen {
	width: 100%;
    height: 100%;
	background-color: #fff;  
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.main {
    box-sizing: border-box;
    
    position: relative;
    
}

.navigation-wrapper {
    display: flex;
	align-items: center;
    gap: 12px;
    max-width: 1200px;
	width: 100%;                 
	padding: 10px 35px;
	box-sizing: border-box;
}

.header-logo {
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 35px;
    line-height: 35px;
    color: #16133D;
}

.service {
    max-width: 1200px;
	width: 100%;
	flex: 1;
	align-self: center;          
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
    padding: 10px 35px;
}

.passes__wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;                 
}

h4 {
   
    color: #7690A8;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
}

h2 {
    color: #16133D;
    font-family: 'Nunito Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 52px;
    letter-spacing: 0.2px;
}

h4, h2 {
    text-align: start;            
	margin: 20px 0 -19px;
	padding: 0 4px;
}

.cards {
    display: flex;
    flex-direction: row;
    gap: 0px;
    flex-wrap: wrap;                 
	justify-content: space-around;   
	padding: 45px 0;                 
	width: 100%;                     
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 25px;                    
    max-width: 370px;
    width: 100%;
    height: 340px;
    background: #FFFFFF;
    border: 1px solid #E5EAF4;
    border-radius: 8px;margin-bottom: 30px;
}

.card:hover {
    border: 1px solid #3DB370;
}

a {
    color: #3DB370;
    text-decoration: none;
}

.card__icon:hover {
    background-color: #16133D;
    border: 1px solid #E5EAF4;
    border-radius: 12px;
    transition: .6s;
}

footer {
    background: #16133D;
    display: flex;
    flex-direction: column;
    flex: none;
    flex-wrap: wrap;
	justify-content: space-between;
    max-width: 1200px;
	width: 100%;  
    height: 100%;              
	box-sizing: border-box;
    gap: 20px;
    padding: 20px 35px;  
}

.footer__name {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 500;
    font-size: 35px;
    line-height: 35px;
    color: #FFFFFF;
}

.footer__socials {
    display: flex;
    gap: 10px;
    width: 200px;
    height: 40px; 
}

.footer__socials:hover {
   stroke: #aa1888;
}

.footer__logo {
   width: 200px;
   height: 50px;
   display: flex;
   gap: 12px;
}

