@font-face {
    font-family: Montserrat-uat;
    font-display: swap;
    src: url(../index/Montserrat-latin-normal.woff2) format("woff2")
}

@font-face {
    font-family: Montserrat-uat;
    font-display: swap;
    src: url(../index/Montserrat-cyrillic-normal.woff2) format("woff2");
}

@font-face {
    font-family: Montserrat-prd;
    font-display: swap;
    src: url(../index/Montserrat-latin-normal.woff2) format("woff2")
}

@font-face {
    font-family: Montserrat-prd;
    font-display: swap;
    src: url(../index/Montserrat-cyrillic-normal.woff2) format("woff2");
}
body{
    background: #f7f8fb;
}
body,body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat-prd, Arial, sans-serif;
    /*-webkit-font-smoothing: antialiased;*/
}
a{
    text-decoration: none;
    color: inherit;
}
ul,ol{
    list-style: none;
}
main video{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
.supHeader{
    background: #003D60;
    width: 100%;
    height: 60px;
    padding: 0 12px;
    display: flex;
    align-items: center;
}
.supHeaderInner{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 4px;
}
.supHeader a {
    justify-self: center;
}
.supHeaderInner a img {
    height: 36px;
}
.widgets{
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
}
.widgets a img{
    width: 24px;
    height: 24px;
}
header{
    z-index: 1000;
    background: #003D60;
    width: 100%;
    height: 56px;
}
.headerInner{
    max-width: 1080px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    position: relative;

}
.headerInner::after{
    left: 0;
    height: 2px;
    content: "";
    background: #fff;
    width: 100%;
    position: absolute;
    bottom: -2px;
}
.headerInner ul{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.headerInner ul li{
    display: flex;
    flex-direction: column;
    position: relative;
}
.headerInner ul li a{
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.36px;
    line-height: 24px;
}
.headerInner ul li:hover::after{
    position: absolute;
    left: 0;
    bottom: -6px;
    content: "";
    background: #FDC300;
    width: 100%;
    height: 2px;
    border-radius: 1px;
}
.headerInner ul li a img{
    width: 24px;
    height: 24px;
}
.headerInner a img{
    width: 24px;
    height: 24px;
}
.subHeader{
    z-index: 1000;
    background: #0076A9;
    height: 61px;
    width: 100%;
}
.subHeaderInner{
    max-width: 1080px;
    margin: 0 auto;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    height: 100%;
}
.breadCrumbs {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 1px;
    margin-left: 4px;

}
.breadCrumbs img{
    width: 16px;
    height: 16px;
}
.breadCrumbs span{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.breadCrumbs h3{
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -.472px;
    font-size: 22px;
}
.breadCrumbs a{
    display: flex;
    flex-direction: column;
    position: relative;
}
.breadCrumbs a:hover::after{
    cursor: pointer;
    position: absolute;
    bottom: -6px;
    content: "";
    background: #fff;
    width: 100%;
    height: 2px;
    border-radius: 1px;
}
.mainHeader{
  z-index: 100;
    position: sticky;
    top: 0;
}
main{
    max-width: 1284px;
    margin: 72px auto 0 auto;
    width: 100%;
}
.articleHead{
    max-width: 720px;
    width: 100%;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 10px;
    padding-left: 10px;
}
.topic{
    color: #174290;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: underline;
}
h1{
    color: #203442;
    letter-spacing: -0.368px;
    line-height: 39px;
}
.articleInfo{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.infoLeft{
    display: flex;
    align-items: flex-end;
    gap: 4px;
}
.infoLeft * {
    color: #4a5768;
    font-size: 12px;
    font-weight: 500;
}
.infoLeft img{
    width: 16px;
    height: 16px;
}
.infoRight{
    display: flex;
    align-items: center;
    gap: 12px;
}
.infoButton{
    height: 41px;
    align-items: center;
    padding: 8px 24px;
    display: flex;
    border: 2px solid #00507D;
    border-radius: 9999px;
    gap: 6px;
    transition: all 0.2s ease-in-out;
}
.infoButton span{
    font-weight: 500;
    font-size: 14px;
}
.infoButton svg{
    height: 16px;
    width: 16px;
}
.infoButton:first-child{
    color: #00507d;
}
.infoButton:last-child{
    background-color: #003d60;
    color: #fff;
    border-color: #003d60;
}
.infoButton:first-child:hover{
    color: #fff;
    background: #00507d;
}
.infoButton:last-child:hover{
    background-color: #3182B0;
    color: #fff;
    border-color: #3182B0FF;
}
.articleHead p{
    color: #202527;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.472px;
}
.authorInfo{
    display: flex;
    gap: 8px;
    align-items: center;
}
.authorInfo span{
    font-weight: 900;
    letter-spacing: -1.12px;
    color: #fff;
    padding: 4px 8px;
    font-size: 20px;
    text-transform: uppercase;
    background: #1d4da5;
}
.authorInfo p a{
    text-decoration: underline;
}
.authorInfo p{
    font-size: 14px;
    color: #0057a2;
    font-weight: 700;
}
article img, article video{
    width: 100%;
}
.mainPhoto{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: block;

}
.mainPhoto img{
    width: 100%;
    margin-bottom: 32px;
}
article{
    max-width: 720px;
    margin: 0 auto;
}
article p{
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    color: #272a30;
    letter-spacing: -0.472px;
    margin-bottom: 14px;
}
article a{
    color: #0057A2;
    text-decoration: underline;
}
article h2{
    font-size: 24px;
    color: #1e1f3a;
    letter-spacing: -0.368px;
    line-height: 34px;
    margin-bottom: 14px;
}
article img, article video{
    width: 100%;
}
.pinsContainer{
    max-width: 1080px;
    margin: 32px auto;
}
.pinsContainer p{
    font-size: 16px;
    color: #2e3238;
    font-weight: 500;
    margin-bottom: 8px;
}
.pinsContainer ul{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

}
.pinsContainer ul li{
    border: 2px solid #00507D;
    border-radius: 9999px;
    padding: 4px 20px;
    height: 33px;
}
.pinsContainer ul li a{
    color: #00507d;
    font-size: 14px;
    font-weight: 500;
}
.deskHide{
    display: none;
}
footer{
    width: 100%;
    border-top: 1px solid #C4D1EA;
}
.footerInner{
    max-width: 1284px;
    padding-top: 32px;
    margin: 0 auto;
}
.footerTop{
    background: #003D60;
    height: 72px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 32px;
    margin-bottom: 16px;
    margin-left: 16px;
    margin-right: 16px;

}
.footerTopLeft, .footerTopMiddle{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footerTopLeft a img, .footerTopMiddle a img{
    height: 32px;
}
.footerTopLeft{
    justify-content: flex-start;
    gap: 24px;
}
.footerTopRight{
    display: flex;
    align-items: center;
    justify-self: flex-end;
    
}
.footerTopRight span{
    color: #BECCDA;
    font-weight: 500;
    white-space: nowrap;
    padding-right: 16px;
    font-size: 14px;
}
.footerTopRight a img{
    width: 24px;
    height: 24px;
}
.footerMid{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding-bottom: 12px;
    margin-left: 16px;
    margin-right: 16px;
}
.footerMid ul{

}
.footerMid ul li{
    padding: 10px 8px;
    /*position: relative;*/

}
.footerMid ul li:first-child a{
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footerMid ul li:first-child a img{
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
    z-index: -1;
}

.footerMid ul li a{
    color: #174290;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.472px;
    -webkit-font-smoothing: antialiased;
}
.footerBot{
    margin-left: 16px;
    margin-right: 16px;
    border-top: 1px solid #C4D1EA;
    padding-top: 10px;
}
.footerBot h3{
    font-size: 14px;
    color: #3e5463;
    margin-bottom: 12px;
}
.footerBot ul{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 32px;
}
.footerBot ul li{}
.footerBot ul li:not(:last-child) a::after{
    content: "•";
    color: #fdc300;
    font-weight: 500;
    position: absolute;
    right: -2px;
}
.footerBot ul li a{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #4a5768;
    position: relative;
    padding-right: 8px;
}

@media screen and (max-width: 1200px) {
    .headerInner ul{
        width: 85%;
    }
    .deskHide{
        display: flex;
    }
    .headerInner ul li a{
        white-space: nowrap;
    }
    .headerInner ul {
        justify-content: flex-start;
        gap: 12px;
    }
    .supHeaderInner{
        margin: 0;
    }
    .headerInner{
        padding: 0 17px;

    }
    .supHeader{
        padding: 0 17px;
    }

}
@media screen and (max-width: 1024px) {
    .pinsContainer {
        margin-left: 12px;
        margin-right: 12px;
    }
}
@media screen and (max-width: 820px) {
    .footerBot ul{
        justify-content: center;
    }
    .footerTop{
        grid-template-columns: 1fr 1fr;
        height: 100%;
        row-gap: 16px;
    }
    .footerTop > :nth-child(1) {
        grid-column: 1 / -1; /* занимает всю строку */
        justify-self: center;
    }

    .footerTop > :nth-child(2) {
        grid-column: 1;      /* первый столбец */
        grid-row: 2;
    }

    .footerTop > :nth-child(3) {
        grid-column: 2;      /* второй столбец */
        grid-row: 2;
    }
    .footerMid{
        grid-template-columns: 1fr;
        /*flex-direction: column;*/
    }

    .footerMid ul li:not(:first-child){
        display: none;

    }
}
@media screen and (max-width: 600px) {
    .footerTop{
        grid-template-columns: 1fr;
    }
    .footerTop > * {
        grid-column: 1!important;
    }
    .footerTop > :nth-child(3) {
        grid-row: 3;
        justify-self: center;
    }
    .subHeader{
        height: 32px;
        border-top: 1px solid #fff;
    }
    .headerInner::after{
        display: none;
    }
    .breadCrumbs span{
        font-size: 14px;
    }
    .breadCrumbs h3{
        font-size: 14px;
    }
    .widgets a:not(:last-child){
        display: none;
    }
    .headerInner{
        padding: 0 12px;

    }
    .supHeader{
        padding: 0 12px;
    }
    h1{
        font-size: 24px;
        line-height: 32px;
    }
    .articleHead p{
        font-size: 16px;
        line-height: 24px;
    }
    article p{
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;

    }
    article h2{
        font-size: 18px;
        line-height: 22px;
    }
    article {
        padding-right: 8px;
        padding-left: 8px;
    }
    .articleInfo{
        flex-wrap: wrap;
       gap: 16px;
    }
    .infoRight{
        gap: 2px;
    }
    .infoButton{
        height: 49px;
    }
    .authorInfo p{
        font-size: 14px;
    }
    main{
        margin-top: 32px;
    }


}

.customJS-styles__activation-message {
  color: white;
  font-weight: 700;
  font-size: 16px;
  background: #073e86c2;
  padding: 10px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 0px!important;
  margin-top: 0!important;
}

.customJS-styles__icon {
  color: red;
  font-size: 35px;
  text-align: center;
  margin-right: 7px;
}

.blue-line {
  width: 100%;
  height: 4px;
  background: #003d60; /* твой синий */
  margin: 20px 0;
}

article video{
    margin-bottom: 10px;
    
}

.my-btn{
    color: #fff;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003D60;
    font-weight: 700;
    margin: 0 auto 16px auto;
    width: 100%;
    max-width: 320px;
    text-decoration: none;
}
.important-section{
    padding: 16px;
    border-radius: 2px;
    border: 2px solid #ff3737;
}