@font-face {
    font-family: "Gilroy"; 
    src: url("fonts/GILROY-REGULAR.TTF") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
    } 
    @font-face {
        font-family: "Gilroy-Black"; 
        src: url("fonts/GILROY-BLACK.TTF") format("truetype"); 
        font-style: normal; 
        font-weight: normal; 
        } 
    
        @font-face {
            font-family: "Gilroy-Semibold"; 
            src: url("fonts/GILROY-SEMIBOLD.TTF") format("truetype"); 
            font-style: normal; 
            font-weight: normal; 
            } 
            @font-face {
                font-family: "Gilroy-Medium"; 
                src: url("fonts/GILROY-MEDIUM.TTF") format("truetype"); 
                font-style: normal; 
                font-weight: normal; 
                } 
    


* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Gilroy-Medium";
}
body {
    background-color: #F7FBFC;
}
header {
transition: 1s;
}
.container {
    width: 1200px;
    position: relative;
    margin: 0 auto;
}
.row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    
}
.banner {
    background: url(img/banner.png) right 20% bottom;
    background-size: cover;
    height: 80vh;
}
a {
    color: inherit;
    text-decoration: none;
}
h1 {
font-size: 68px ;
color: #214C76;
font-family: "Gilroy-Black";
text-transform: uppercase;
}
h2 {
    font-size: 48px;
    color: #214C76;
    font-family: "Gilroy-Black";
    margin-bottom: 80px;
    text-align: center;
    text-transform: uppercase;
}
section {
    padding:  90px 0;
}
.item {
    flex: 1;
}
.sfery p {
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Gilroy-Medium";
	margin-top: 20px;
}

.sfery .item {
    flex: 1;
    margin: 0 auto;
    text-align: center;
}
.catalog .item {
    flex: 1;
    border-radius: 10px;
background: #FFF;
box-shadow: 0px 4px 40px 0px rgba(27, 130, 226, 0.07);
padding: 20px;
display: flex;
flex-direction: column;
gap: 20px;
}

.catalog .item .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog .item .content img {
  width: auto;
}
.catalog .item img  {
    width: 100%;
}
.catalog span {
    font-family: 'Gilroy-Semibold';
    font-size: 20px;
}

.contacts .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 9;
}
.menu ul {
    display: flex;
    align-items: center;
}
li {
    list-style: none;
}
li a {
    position: relative;
    /* display: inline-block; */
    padding: 20px;
}
.banner .container {
    height: 100%;
}
.banner .row, .about .row {
    height: 100%;
    align-items: center;
}
button, input[type="submit"] {
    background: #214C76;
    color: #fff;
    padding: 15px 50px;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

.contacts span {
    font-size: 14px;
    color: #214c76b3;
}
.contacts p, .contacts a {
    font-size: 22px;
    font-family: 'Gilroy-Semibold';
}
.text {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
header .row {
    align-items: center;
}


#Modal.show {
    display: block;
}
#Modal {
    position: fixed;
    display: none;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.modalContent {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 40px;
    gap: 20px;
    position: absolute;
    z-index: 999;
}

#blackbg {
    background: #00000096;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 998;
    top: 0;
}
input[type="text"], input[type="tel"] {
    padding: 20px;
}
#gamburger {
  display: none;
}
#gamburger span:nth-child(n) {
    display: block;
    height: 4px;
    width: 26px;
    margin-top: 5px;
    background: #214c76;
    transition: 0.2s;
}
.contact {
    display: none;
}
.scrolled {
	background: #fff;
	}
.scrolled .logo img {
    width: 75px;
	transition: 1s;
}
form {
    display: flex;
    flex-direction: column;
	gap: 14px;
}
@media screen and (max-width:769px) {
		.banner {
    background: url(img/banner_mobile.png);
			background-position: bottom;
			height: 90vh;
}
    .row {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-direction: column;
    }
    .menu {
        display: none;
        position: fixed;
        width: 100%;
        padding: 20px;
        top: 0;
        background: white;
    }
    .menu ul {
        display: flex;
        align-items: center;
        flex-direction: column;
gap: 31px;
	}
    .menu.active  {
        display: block;
    }
    .container {
        width: 100%;
        padding: 20px;
    }
    h1 {
        font-size: 36px;
    }
    #gamburger {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
    }
    #gamburger.active span:first-child {
         rotate: 45deg;
         top: 9px;
         position: relative;
    }
    #gamburger.active span:last-child {
        rotate: -45deg;
        position: relative;
   }
   #gamburger.active span:nth-child(2n) {
   display: none;
}
header {
    position: absolute;

}
	
.contact {
    position: fixed;
    bottom: 10px;
    right: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 30px;
    gap: 20px;
}
.call_mobile, .wp_mobile {
    flex: 1;
    padding: 22px;
    color: white;
    text-align: center;
}
.wp_mobile {
    background: green;    
}
.call_mobile {
    background: #1e7bff;
 
}

}