/* DEFAULT */
@font-face {
	font-family: 'Franklin Gothic Book'; 
	src: url('../fonts/franklinGothicBook.ttf'); 
}
@font-face {
	font-family: 'Franklin Gothic Demi'; 
	src: url('../fonts/franklinGothicDemi.ttf'); 
}
@font-face {
	font-family: 'Franklin Gothic Medium'; 
	src: url('../fonts/franklinGothicMedium.ttf'); 
}
* {
    box-sizing: border-box;

    padding: 0;
    margin: 0;
}
body {
    font-family: 'Franklin Gothic Book', sans-serif;
    letter-spacing: 0.1em;
}
.container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}
img {max-width: 100%;}
iframe {max-width: 100%;}
input,
textarea {outline: none;}
::-webkit-input-placeholder {
    font-family: 'Franklin Gothic Book';
    color: #000;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    line-height: 17px;
    letter-spacing: 0.1em;
}
li {list-style: none;}

.button a {
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(90deg, #101078 0%, #6c9bdd 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;

    padding: 10px 30px;
}
.button a:hover {
    color: #101078;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    border: 1px solid;
}

/* SECTION HEADER */
header {
    background: url('../img/header-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
header .header-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(80deg, #fff 0, rgba(255, 255, 255, 0.73) 70%, rgba(255, 255, 255, 0) 100%);
}
header .header-telephones {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding-top: 30px;
}
header .header-telephones a {
    color: #000;
    text-decoration: none;

    margin: 0 10px;
}
header .header-menu {
    background: rgba(255, 255, 255, .3);
    border: 2px solid #6c9Bdd;
    border-radius: 15px;
    padding: 5px;
}
header .dropdown {
    float: left;
    overflow: hidden;
}
.dropdown .dropdown-button {
    font-family: inherit;
    font-size: 20px;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;

    margin: 0 10px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #f9f9f9;
    min-width: 160px;
}
.dropdown-content a {
    float: none;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: left;

    margin: 0!important;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
header .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header-nav ul {display: flex;}
header .header-menu a {
    color: #000;
    font-size: 20px;
    text-decoration: none;

    margin: 0 20px;
}
header .header-menu li:nth-child(1) {margin-left: 0px;}
header .header-menu li:last-child {margin-right: 0;}
header .header-content {
    width: 50%;

    margin-top: 100px;
}
header .header-content h1 {
    font-family: 'Franklin Gothic Demi', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}
header .header-content p {
    font-family: 'Franklin Gothic Medium', sans-serif;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;

    margin: 50px 0;
}
header .button-message {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 30px; bottom: 60px;
    background: #111179;
    border-radius: 50%;
    z-index: 1;
}
header .button-message img {
    max-width: 32px;
    width: 100%;
}

/* MOBILE MENU */
.mobile-button {
    width: 50px;
    height: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}
.mobile-button span,
.mobile-button span::before,
.mobile-button span::after {
    display: block;
    width: 50px;
    height: 3px;
    background: #000;
}
.mobile-button span::before {
    content: '';
    transform: translateY(-13px);
}
.mobile-button.active {transform: rotate(45deg);}
.mobile-button span::after {
    content: '';
    transform: translateY(10px);
}
.mobile-button.active span::before {display: none;}
.mobile-button.active span::after {
    content: '';
    transform: translateY(10px);
    transform: rotate(90deg);
}
.header-menu.mobile-menu.active {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #d2dff7;
    position: absolute;
    top: 0; right: 0; left: 0;
    z-index: 1;

    padding: 60px 0;
}
.header-menu.mobile-menu.active li {
    font-size: 20px;

    margin: 10px 50px;
}

/* SECTION SERVICES */
.services {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(232, 240, 255, 0.73) 40%, #c3d4f3 100%);

    padding: 50px 0;
}
.services h2 {
    font-family: 'Franklin Gothic Demi', sans-serif;
    color: #464b9a;
    font-size: 36px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.15em;

    margin-bottom: 50px;
}
.services .services-cards {
    display: flex;
    flex-direction: column;
}
.services .services-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services .services-card {
    width: 200px;
    height: 200px;
    max-width: 300px;
    max-height: 300px;
    text-align: center;
    background: #fff;
    box-shadow: 7px 6px 21px 4px #c2cDe0;
    border-radius: 75px;

    padding: 20px;
    margin: 10px;
}
.services .services-card img {
    max-width: 75px;
}
.services .services-card h3 {
    color: #464b9a;
    font-size: 18px;
    font-weight: 600;

    margin-top: 10px;
}

/* SECTION PORTFOLIO */
.portfolio {
    position: relative;
}
.portfolio .portfolio-cards {
    position: relative;
    display: flex;
    justify-content: space-between;

    padding-bottom: 45px;
}
.portfolio .portfolio-card {margin: 25px 5px;}
.portfolio .portfolio-card img {border-radius: 10px;}
.portfolio-title h2 {
    font-family: 'Franklin Gothic Demi', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 30px;

    margin-bottom: 30px;
    padding-top: 45px;
}
.portfolio .portfolio-title p {
    font-size: 20px;

    margin-bottom: 20px;
}

/* SECTION REALIZATION */
.realization {position: relative;}
.realization .realization-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.realization .realization-card {
    width: 100%;
    max-width: 270px;

    margin: 20px;
}
.realization .realization-card img {border-radius: 10px;}
.realization .realization-card p {
    line-height: 23px;
    text-align: justify;

    margin-top: 60px;
}
.realization .realization-card h4 {
    font-size: 22px;

    margin-top: 20px;
}
.realization .realization-image {
    height: 100%;
    max-height: 320px;
}
.realization .realization-title h2 {
    font-family: 'Franklin Gothic Demi', sans-serif;
    font-size: 36px;
    font-weight: 600;

    padding: 60px 0 30px 0;
}
.realization .realization-title p {
    font-size: 20px;
    line-height: 28px;
    text-align: justify;
}

/* SECTION FEEDBACK */
.feedback {position: relative;}
.feedback .feedback-title h2 {padding: 70px 0;}
.feedback .feedback-title p {
    font-family: 'Franklin Gothic Medium';
    font-size: 18px;
    line-height: 23px;
    text-align: justify;
    letter-spacing: 0.1em;
    color: #000;

    margin-bottom: 50px;
}
.feedback .form-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.feedback .feedback-form {
    color: #fff;
    width: 100%;
    max-width: 320px;
    background: linear-gradient(180deg, #0e0d76 0%, #70a0e1 100%);
    border-radius: 7px;

    padding: 25px 40px 50px 40px;
    margin: 30px 0;
}
.feedback .feedback-price {text-align: center;}
.feedback .feedback-form input {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(34, 38, 109, 0.5);
    border: none;
    border-radius: 15px;

    padding: 10px 0 10px 15px;
    margin: 10px 0;
}
.file-form input[type="file"] {display: none;}
.file-form .label {
    border: 2px dashed #fff;
    border-radius: 15px;
    display: block;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;

    padding: 10px 0;
    margin: 10px 0;
}
.file-form .label .title {
    color:#fff;
    transition: 200ms color;
}
.file-form .label:hover {
    border:2px dashed rgba(255, 255, 255, .3);
}
.feedback .feedback-form textarea {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 4px rgba(34, 38, 109, 0.5);
    border: none;
    border-radius: 15px;
    max-height: 60px;
    resize: none;

    padding: 10px 0 10px 15px;
    margin: 10px 0;
}
.feedback .feedback-form button {
    width: 100%;
    font-family: 'Franklin Gothic Book';
    color: #232268;
    font-size: 16px;
    text-transform: uppercase;
    background: #fefefe;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 6px 10px #22266d;
    cursor: pointer;
    transition: all .5s;
    outline: none;
    
    padding: 10px 75px;
    margin-top: 10px;
}
.feedback .feedback-form button:hover {
    color: #fff;
    background: #BACBED;
    box-shadow: 0px 6px 10px #22266d;
    border-radius: 15px;
}
.feedback .feedback-form p {
    font-size: 14px;
    line-height: 17px;
    text-align: justify;

    margin: 10px 0;
}
.feedback p.feedback-agreement {
    font-size: 12px;
    line-height: 17px;
    text-align: justify;
    letter-spacing: 0.1em;

    margin-top: 20px;
}

/* SECTION ABOUT */
.about {
    background: linear-gradient(180deg, rgba(250, 252, 255, 0.73) 0%, #e8f0ff 50%, #acc8fb 100%);

    padding: 60px 0;
}
.about .about-title h2 {
    font-size: 36px;
    font-weight: 600;

    margin-bottom: 30px;
}
.about .about-wrap {display: flex;}
.about .about-content {margin-right: 100px;}
.about .about-content,
.about .about-image {width: 50%;}
.about .about-image img {
    border-radius: 40px;

    margin: 20px 0;
}
.about .about-title span {
    font-family: 'Franklin Gothic Demi', sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    text-align: justify;
    text-transform: uppercase;
}
.about .about-description p {
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
    letter-spacing: 0.1em;

    padding-top: 30px;
}
.about .about-icons {
    display: flex;
    align-items: center;
}
.about .about-icons img {margin-right: 10px;}
.about .about-icon {
    max-width: 250px;
    display: flex;
    align-items: center;

    margin-top: 40px;
}
.about .about-icon:nth-child(2) {margin-left: 10px;}
.about .about-icon p {
    font-family: 'Franklin Gothic Demi';
    color: #253f5e;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: justify;
    text-transform: uppercase;
}

/* CLIENTS */
.clients {
    position: relative;

    padding-bottom: 70px;
}
.clients .clients-title {padding: 70px 0 30px 0;}
.clients .clients-title h2 {
    font-family: 'Franklin Gothic Demi', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    color: #374055;
}
.clients .clients-company {
    display: flex;
    flex-direction: column;
}
.clients .clients-company .company-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    margin: 50px 0;
}
.clients .company-item {margin: 0 10px;}
.clients .clients-company .company-item img {
    filter: grayscale(1);
    transition: all .5s;
}
.clients .clients-company .company-item img:hover {filter: grayscale(0);}
.clients .company-item {
    max-width: 200px;
    width: 200px;
}




/* CONTACTS */
.contacts {
    background: linear-gradient(180deg,  #fafcff 0%, rgba(181, 210, 251, 0.40) 50%, rgba(96, 144, 217, 0.90) 100%);

    padding: 60px 0;
}
.contacts iframe {box-shadow: 5px 5px 21px 6px #5382c2;}
.contacts .contacts-information {display: flex;}
.contacts .contacts-title h2 {
    font-family: 'Franklin Gothic Demi';
    color: #101078;
    font-weight: 600;
    font-size: 30px;
}
.contacts h3 {
    font-family: 'Franklin Gothic Medium';
    font-size: 20px;
    color: #101078;
    font-weight: normal;
    line-height: 23px;
}
.contacts .contacts-column {margin-top: 30px;}
.contacts .contacts-column p,
.contacts .contacts-column a {
    font-family: 'Franklin Gothic Medium';
    color: #101078;
    line-height: 30px;
    font-size: 20px;

    margin: 10px 0;
}
.contacts .telephones-number {
    display: flex;
    flex-direction: column;
}
.contacts .contacts-column a {text-decoration: none;}
.contacts .contacts-telephones,
.contacts .contacts-social {margin-top: 50px;}
.contacts .contacts-social img {margin-top: 30px;}
.contacts .contacts-adress {margin-left: 100px;}
.contacts .contacts-adress iframe {margin-top: 50px;}
.contacts .contacts-city,
.contacts .contacts-email,
.contacts .contacts-telephone {
    display: flex;
    align-items: center;
}
.contacts .contacts-city img,
.contacts .contacts-email img,
.contacts .contacts-telephone img {padding-right: 15px;}

/* FOOTER */
footer {
    background: linear-gradient(180deg, rgba(96, 144, 217, 0.94) 0%, #2b599e 40%, #102573 70%, #161b63 100%);
    color: #fff;

    padding: 40px 0;
}
footer .footer-menu {
    display: flex;
    flex-direction: column;
}
footer .footer-menu a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;

    margin-bottom: 25px;
}
.footer-wrapper {
    display: flex;
    justify-content: space-between;
}
footer p {margin: 10px 0;}
footer .footer-social h3 {margin: 60px 0 20px 0;}
footer .footer-telephones {
    text-align: right;
    display: flex;
    flex-direction: column;
}
footer .footer-telephones a {
    font-size: 18px;
    text-decoration: none;
    color: #fff;

    margin-bottom: 25px;
}
footer .footer-telephone {
    display: flex;
    flex-direction: column;
}

/* BACKGROUND BLOCKS */
.portfolio-triangle-left,
.portfolio-triangle-right,
.realization-triangle-left,
.realization-triangle-right,
.feedback-triangle-left,
.feedback-triangle-left-two,
.feedback-triangle-right,
.clients-triangle-left,
.clients-triangle-right {
    width: 0;
    height: 0;
    position: absolute;
    border-style: solid;
    z-index: -1;
}
.portfolio-triangle-left {
    border-width: 800px 160px 0 0;
    border-color: #e6f3ff transparent transparent transparent;
}
.portfolio-triangle-right {
    right: 0; bottom: 0;
    border-width: 0 0 800px 160px;
    border-color: transparent transparent #e6f3ff transparent;
}
.realization-triangle-left {
    bottom: 0;
    border-width: 800px 0 0 160px;
    border-color: transparent transparent transparent #d2dff7;
}
.realization-triangle-right {
    right: 0;
    border-width: 0 160px 800px 0;
    border-color: transparent #d2dff7 transparent transparent;
}
.feedback-triangle-left {
    border-width: 700px 160px 0 0;
    border-color: #dcf0ff transparent transparent transparent;
}
.feedback-triangle-left-two {
    bottom: 0;
    border-width: 700px 0 0 160px;
    border-color: transparent transparent transparent #bbd9fa;
}
.feedback-triangle-right {
    right: 0; bottom: 0;
    border-width: 0 0 700px 160px;
    border-color: transparent transparent #bbd9fa transparent;
}
.clients-triangle-left {
    bottom: 0;
    border-width: 700px 0 0 160px;
    border-color: transparent transparent transparent #e8f0ff;
}
.clients-triangle-right {
    right: 0;
    border-width: 0 160px 700px 0;
    border-color: transparent #e8f0ff transparent transparent;
}

/* MEDIA QUERIES */

/* IF WIDTH < 1600PX */
@media screen and (max-width: 1600px) {
    .container {padding: 0 10%;}
    header .header-menu a,
    header .dropdown .dropdown-button {
        font-size: 16px;

        margin: 0 10px;
    }
    .portfolio .portfolio-card {padding: 0 10px;}
}

/* IF WIDTH < 1200PX */
@media screen and (max-width: 1200px) {
    .container {padding: 0 10%;}
    .header-menu .mobile-menu.active {display: none;}
    .portfolio .portfolio-cards {
        flex-wrap: wrap;
        justify-content: center;

        padding-bottom: 0;
    }
    .realization .realization-cards {justify-content: center;}
    .services .services-cards {flex-direction: row;}
    .services .services-row {justify-content: center;}
    .services .services-card {
        margin: 25px 10px;
        padding: 20px;
    }
    .feedback .form-wrapper {
        flex-direction: column;

        margin-top: 30px;
    }
    .about-image {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .clients .clients-company {display: flex;}
    .clients .company-item {padding: 20px;}
    .footer-wrapper {flex-direction: column;}
    footer .footer-menu {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* IF WIDTH < 992PX */
@media screen and (max-width: 992px) {
    header nav .header-menu {display: none;}
    header .header-telephones {display: none;}
    header .header-nav ul {flex-direction: column;}
    header li {margin: 5px 0;}
    header .header-content {width: 100%;}
    .mobile-button {display: flex;}
    .clients .clients-company .company-row {
        flex-direction: column;

        margin: 0;
    }
    .clients .company-item {margin: 10px;}
    .contacts-information {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .about .about-wrap {flex-direction: column;}
    .about .about-icon {max-width: 100%;}
    .about .about-content, .about .about-image {width: 100%;}
    .contacts .contacts-adress {margin: 0;}
    footer .footer-telephones {text-align: center;}
}

/* IF WIDTH < 768PX */
@media screen and (max-width: 768px) {
    .services .services-row {justify-content: center;}
    .services .services-cards {flex-direction: column;}
    .portfolio-cards {padding: 0;}
    .portfolio-card {margin: 20px;}
    .portfolio .portfolio-cards {justify-content: center;}
    .realization .realization-title p {text-align: center;}
    .realization .realization-cards {justify-content: center;}
    .realization .realization-card h4 {margin: 15px 0;}
    .realization .realization-card {margin: 25px;}
    .realization .realization-card p {margin-top: 30px;}
    .about .about-title {text-align: center;}
    .about .about-content, .about .about-image {width: 100%;}
    .about .about-icons img {margin: 0;}
    .about .about-icon p {text-align: center;}
    .about .about-content {margin: 0;}
    .about .about-image img {margin: 15px 0;}
    .about .about-icons {flex-direction: column;}
    .about .about-icon {
        flex-direction: column;

        margin: 15px 0;
    }
    .about .about-icon p {margin: 20px 0;}
    .about .about-wrap {
        flex-direction: column;
        align-items: center;
    }
    .feedback .feedback-title,
    .feedback .feedback-title p,
    .feedback .button,
    .contacts .contacts-title,
    .clients .clients-title,
    .services .services-title,
    .portfolio .portfolio-title,
    .realization .realization-title {text-align: center;}
    .clients .clients-company .company-row {
        flex-direction: column;

        margin: 0;
    }
    .contacts .contacts-city,
    .contacts .contacts-email,
    .contacts .contacts-telephone {
        flex-direction: column;

        margin-top: 15px;
    }
    .contacts .contacts-city img,
    .contacts .contacts-email img,
    .contacts .contacts-telephone img {padding: 0;}
    .contacts h3 {margin: 10px 0;}
    .clients .company-item {margin: 15px 0;}
    footer .footer-menu {
        flex-direction: column;

        margin-top: 30px;
    }
    .footer .footer-telephones {margin-top: 60px;}
}

/* IF WIDTH < 576PX */
@media screen and (max-width: 576px) {
    header {height: 100%;}
    header .header-content {
        text-align: center;
        
        margin-top: 25px;
    }
    header .header-content p {
        line-height: 25px;
        text-align: center;
    }
    header .button {padding: 50px 0;}
    header .button a {padding: 10px 30px;}
    .clients-company {display: block;}
}