html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
    --main-blue: #0A4F84;
    --blue-2: #063D68;
    --main-red: #AB4967;
    --main-yellow: #CD7602;
    --main-black: #333333;
}


body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--main-black);
    /* margin: 0;
    padding: 0; */
}

.section-title {
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 300;
    text-align: center;
    color: var(--main-black);
}


.main-header {
    position: sticky;
    width: 100%;
    top: -91px;
    background-color: var(--main-blue);
    z-index: 99;
    
}

.main-header .logo h1 { margin: 0; }
.main-header .logo img { display: block; height: 90px; }

.main-header .logo-content {
    display: flex;
    align-items: center;
}

.main-header .logo-content p {
    font-size: 18px;
    padding-left: 21px;
    text-align: center;
    color: #fff;
    font-weight: 300;
    line-height: 1;
}

.main-header .logo-content p span {
    display: block;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    
}

.header-phones {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-mobile-menu {
    position: relative;
    display: none;
    width: 36px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.btn-mobile-menu .line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.btn-mobile-menu.open .line {
    position: absolute;
}

.btn-mobile-menu.open .first.line {
    transform: rotate(45deg);
    top: 12px;
    left: 0;
}

.btn-mobile-menu.open .second.line {
    transform: rotate(-45deg);
    top: 12px;
    left: 0;
}

.btn-mobile-menu.open  .line.last {
    display: none;
}

.header-phones .phone-item {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin: 3px 0;
}

.header-phones .phone-item a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.header-phones .phone-item a:hover { text-decoration: underline;}
.header-phones .phone-item h3 {
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
}

.header-bottom {
    padding: 12px 0;
    border-top: 1px solid #fff;
}

.header-bottom ul {
    display: flex;
    justify-content: center;
    padding: 0; 
    margin: 0 auto;
    list-style: none;
}

.header-bottom ul li {
    display: inline-block;
    padding: 0 12px;
}

.header-bottom ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
}
.header-bottom ul li a.current,
.header-bottom ul li a:hover {
    color: #CD9A02;
}

.top-ticker {
    padding: 9px 0;
    text-align: center;
    color: var(--main-black);
    background-color: var(--main-yellow);
}

.top-ticker p {
    color: #fff;
}

.top-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 550px;
    margin-bottom: 45px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.top-banner .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25,25,25, 0.5);
}

.top-banner .content {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 12px;
    z-index: 5;
}

.top-banner .content h1 {
    font-size: 21px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}

.top-banner .content h2 {
    font-size: 60px;
    font-weight: 200;
    color: #fff;
    margin: 0;
}

.who-we-section {
    padding: 60px 0 45px 0;
    
}

.who-we-section .section-title {
    /* margin-bottom: 24px; */
    text-align: left;
}

.who-image img {
    width: 100%;
    max-width: 100%;
}

.who-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.who-item .item-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 90px;
    max-width: 90px;
    height: 90px;
    
    background-color: var(--main-red);
    border-radius: 50rem;
}

.who-item .item-icon img {
    width: 36px;
}

.who-item .item-text {
    flex: 0 0 calc(100% - 90px);
    max-width: calc(100% - 90px);
    padding-left: 28px;
}

.who-item .item-text h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 6px 0;
}

.who-item .item-text p {
    /* font-weight: 300; */
    line-height: 20px;
}

.who-item .item-text ul {
    margin: 0;
    padding: 0;
}

.who-item .item-text ul li {
    padding: 6px 0;
    line-height: 1.5;
}
.services-section {
    padding: 45px 0;
}

.services-item-clm {
    margin-bottom: 24px;
}

.services-item {
    position: relative;
    height: 100%;
    padding: 12px;
    color: #fff;
    background-color: var(--blue-2);
    border-radius: 8px;
}

.services-item h3 {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 12px 0;
}

.services-item p {
    font-weight: 300;
    line-height: 21px;
    margin-bottom: 12px;
}

.cv-section {
    padding: 45px 0;
}
.cv-item {
    position: relative;
    height: 100%;
    padding: 0 24px 6px 24px;
    border-radius: 8px;
    border: 1px solid var(--main-yellow);
}

.cv-image {
    position: relative;
    top: -40px;
    text-align: center;
}

.cv-image img {
    width: 120px;
    margin-bottom: 18px;
    border: 3px solid var(--main-yellow);
    border-radius: 50rem;
}

.cv-image h4 {
    font-size: 18px;
    font-weight: 600;
}

.cv-content p {
    margin-bottom: 18px;
    line-height: 20px;
}


.awards-section {
    padding: 45px 0;
}
.award-item {
    margin-bottom: 24px;
}

.award-item h4 {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    margin: 0;
}

.award-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 1px solid var(--main-yellow);
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-section {
    padding: 45px 0;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    flex: 0 0 300px;
    max-width: 300px;
    text-align: center;
}

.contact-item .icon {
    text-align: center;
    height: 60px;
    margin-bottom: 24px;
}

.contact-item .icon img {
    width: auto;
    height: 100%;
}


.contact-item .text p {
    font-size: 18px;
    padding: 6px 0;
}

.contact-item .text p a {
    display: block;
    margin: 3px 0 6px 0;
    /* margin-bottom: 6px; */
    color: var(--main-black);
    color: var(--main-blue);
    font-weight: bold;
    text-decoration: none;
    /* letter-spacing: 1px; */
}

.socials-row {
    margin: 60px 0 24px 0;
}

.socials-links {
    display: flex;
    justify-content: center; 
}

.socials-links a {
    display: inline-flex;
    width: 60px;
    height: 60px;
    margin: 0 12px;
}

.socials-links a img {
    width: 100%;
}


footer {
    width: 100%;
    padding: 12px;
    margin-top: 45px;
    color: #fff;
    background-color: var(--main-blue);
}

footer p {
    font-size: 12px;
}

.footer-inner {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
}

footer .btn-to-top {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: #fff;
}

footer .btn-to-top img {
    width: 24px;
}

footer .btn-to-top:hover {
    background-color: var(--main-yellow);
}

.share-links-wrapper {
    padding: 12px 0;
}

.share-links-wrapper h4 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 12px;
}

footer .share-links {
    display: flex;
    justify-content: center;
    flex: 0 0 100%;
    max-width: 100%;
}

footer .share-links a {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 12px;
}

@media (max-width: 1399px ) {
    .award-image {
        height: 250px;
    }
}


@media (max-width: 991px ) {

 

    .who-we-section .section-title {
        text-align: center;
    }

    .who-we-section .who-text {
        order: 1;
        margin-bottom: 24px;
    }
    .who-we-section .who-image {
        order: 2;
    }

    .contact-item {
        margin-bottom: 24px;
    }

    .contact-item .icon {
        height: 48px;
    }

}

@media (max-width: 767px ) {

    .main-header {
        top: 0;
    }

    .header-top {
        height: 60px;
    }

    .main-header .logo img {
        height: 60px;
    }

    .main-header .logo-content p {
        font-size: 14px;
        padding-left: 12px;
    }
    
    .main-header .logo-content p span {
        font-size: 36px;
    }
    

    .header-phones {
        display: none;
    }

    .btn-mobile-menu {
        display: flex;
    }

    .cv-item-col {
        margin-bottom: 60px;
    }

    .header-bottom {
        position: fixed;
        top: 60px;
        right: 0;
        width: 100%;
        height: calc(100% - 60px);
        background-color: var(--main-blue);
        transform: translate3d(100%, 0, 0);
        transition: transform 0.3s ease-in-out;
        overflow: auto;
    }

    /* .header-bottom::before {
        content: '';
        position: absolute;
        top:0;
        left: -50%;
        width: 120%;
        height: 100%;
        background-color: rgba(55,55,55,0.75);

    } */

    .header-bottom.open {
        transform: translate3d(0, 0, 0);
    }

    .header-menu ul {
        flex-direction: column;
        /* align-items: flex-end; */
    }
    .header-menu ul li {
        display: block;
        width: 100%;
        padding: 16px 0;
        text-align: right;
    }

    .header-menu ul li a {
        font-size: 18px;
    }
}


@media (max-width: 575px ) {

    .main-header > .container {
        padding-left: 0;
    }
    .who-item .item-icon {
        flex: 0 0 60px;
        max-width: 60px;
        height: 60px;
    }

    .who-item .item-icon img {
        width: 24px;
    }

    .who-item .item-text {
        flex: 0 0 calc(100% - 60px);
        max-width: calc(100% - 60px);
        padding-left: 12px;
    }

    .contact-section,
    .who-we-section,
    .awards-section,
    .services-section,
    .cv-section {
        padding: 24px 0;
    }
}


@media (max-width: 425px ) {
    .award-image {
        height: 200px;
    }
}


/******** temp ********/

.cv-image {
    top: 0;
    padding-top: 24px;
    margin-bottom: 24px;
}
.cv-image img {
    display: none;
}

.lb-data .lb-caption,
.award-item h4 {
    display: none!important;
}