@import 'reset.css';
header {
    position: fixed;
    width: 100%;
    padding: 1.5px 0px;
    box-shadow: 0px 0px 20px 10px rgba(129, 107, 107, 0.1);
    background-color: white;
    z-index: 100;
}
header::after{
    /* content: '';
    box-shadow: 0px 10px 15px 10px rgba(129, 107, 107, 0.1);
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: 0px;
    background: transparent; */
}
header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header-container .left a {
    display: flex;
}
header .header-container .left a span{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: caps;
    font-weight: bold;
    width: 150px;
    margin-left: 5px;
    color: #f2355e;
    padding: 15px 0px;
    line-height: 18px;
    margin-left: 75px;
}
header .header-container .center {
    display: flex;
}
header .header-container .center .search{
    margin-left: 20px;
    cursor: pointer;
}
header .header-container .center ul {
    display: flex;
    align-items: center;
}
header .header-container .center ul li {
    padding: 0px 9px;
    position: relative;
}
header .header-container .center ul li .drop{
    max-height: 0px;
    position: absolute;
    background-color: #ffa8b7;
    padding: 0;
    overflow: hidden;
    left: 0;
    /* transform: translateX(-50%); */
    top: 30px;
    /* -webkit-box-shadow: 0px 10px 10px 0px rgba(160,84,174,0.2);
    -moz-box-shadow: 0px 10px 10px 0px rgba(160,84,174,0.2);
    box-shadow: 0px 10px 10px 0px rgba(160,84,174,0.2); */
    transition: 0.3s;
    display: block;
    transition-timing-function: ease-in-out;
}
header .header-container .center ul li:hover .drop{
    max-height: 500px;
    padding: 0px 0px 0px 0px;
}
header .header-container .center ul li:hover .drop li{
    opacity: 1;
}
header .header-container .center ul li .drop li:first-child{
    padding-top: 3px;
}
header .header-container .center ul li .drop li{
    padding: 0px 10px 5px 10px;
    transition: 0.2s;
    transition-delay: 0.1s;
    opacity: 0;
}
header .header-container .center ul li .drop li:hover{
    background-color: #f2355e;
}
header .header-container .center ul li .drop li:hover a{
    color: white;
}
header .header-container .center ul li .drop li a{
    color: #404040;
    padding-top: 7px;
}
header .header-container .center ul li a {
    color: #404040;
    font-size: 16px;
    font-family: capsBold;
    padding-top: 3px;
    display: block;
    transition: 0.2s;
}
header .header-container .center ul li:hover a{
    color: #f2355e;
}
header{
    transition: 0.2s;
}
header .header-container .left {
    position: relative;
}
header .header-container .left img {
    height: 85px;
    transition: 0.2s;
    left: -20px;
    position: absolute;
}
header.scrolled .header-container .left img{
    /* height: 62px; */
}
header .header-container .right {
    display: flex;
    align-items: center;
}

header .header-container .right .socials span {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}
header .header-container .right .socials ul {
    display: flex;
}

header .header-container .right .socials ul li {
    margin-right: 10px;
}

header .header-container .right .socials ul li a {
    display: block;
    background: transparent no-repeat center;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 1px solid #757575;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

header .header-container .right .socials ul li a:hover{
    border: 1px solid #f2355e;
}
header .header-container .right .socials ul li .fc {
    background-image: url(../img/facebook.png);
}
header .header-container .right .socials ul li .fc:hover{
    background-image: url(../img/facebook-hov.png);
}
header .header-container .right .socials ul li .inst {
    background-image: url(../img/instagram.png);
}
header .header-container .right .socials ul li .inst:hover{
    background-image: url(../img/instagram-hov.png);
}
header .header-container .right .socials ul li .tw {
    background-image: url(../img/twitter.png);
}
header .header-container .right .socials ul li .tw:hover{
    background-image: url(../img/twitter-hov.png);
}
header .header-container .right .langs {
    margin-left: 10px;
    position: relative;
}
header .header-container .right .langs .title {
    font-size: 12px;
    display: block;
    font-weight: bold;
    margin-bottom: 14px;
}
header .header-container .right .langs .selected {
    display: block;
    font-size: 14px;
    color: #757575;
    cursor: pointer;
    min-width: 30px;
    display: flex;
    align-items: center;
}
header .header-container .right .langs .selected img{
    margin-left: 5px;
}
header .header-container .right .langs .selected .flag {
    width: 24px;
    height: 100%;
}
header .header-container .right .langs .selected span {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-height: 18px;
    transition: 0s!important;
}
header .header-container .right .langs ul{
    background-color: #8a8b85;
    position: absolute;
    border: none;
    top: 23px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s;
    transition-timing-function: ease-in-out;
    left: 42%;
    transform: translateX(-50%);
}
header .header-container .right .langs ul.active {
    /* box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.1); */
    max-height: 300px;
}
header .header-container .right .langs ul li {
    font-size: 14px;
    transition: 0.2s;
    padding: 5px 15px;
    display: block;
    cursor: pointer;
}
header .header-container .right .langs ul li a{
    color: white;
}
header .header-container .right .langs ul li:hover{
    background-color: white;
}
header .header-container .right .langs ul li:hover a{
    color: #757575;
}
header .header-container .right .langs ul li img {
    margin-right: 5px;
    width: 24px;
    height: 16px;
}
header .search-form{
    position: absolute;
    width: 100%;
    background-color: white;
    left: 0;
    height: 100%;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 0px;
    overflow: hidden;
    transition:0.3s ease-in-out;
}
header .search-form.active{
    max-height: 200px;
}
header .search-form.active:hover .close-btn{
    transform: scale(1);
}
header .search-form form{
    position: relative;
    width: 30%;
    display: flex;
    align-items: center;
}
header .search-form input{
    border: none;
    border-bottom: 2px solid #f2355e;
    width: 100%;
    height: 35px;
    outline: none;
    padding: 0px 30px 0px 10px;
    font-size: 14px;
}
header .search-form .search-btn{
    margin-left: 10px;
    position: absolute;
    right: 41px;
    cursor: pointer;
}
header .search-form .close-btn{
    height: 20px;
    margin-left: 20px;
    cursor: pointer;
    transform: scale(0);
    transition: 0.2s;
}
header .mob-icon{
    height: 20px;
    display: none;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    margin-left: 10px;
}
header .mob-icon .mob-line{
    width: 25px;
    background-color: #f2355e;
    height: 2px;
}
header .mob-menu{
    position: fixed;
    width: 0px;
    overflow: hidden;
    background: white;
    height: 100vh;
    z-index: 5;
    top: 0;
    right: 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: 0.3s;
}
header .mob-menu.active{
    width: 295px;
}
header .mob-menu .mob-close{
    position: absolute;
    right: 20px;
    top: 20px;
}
header .mob-menu .mob-close img{
    height: 20px;
}
header .mob-menu ul{
    padding-right: 20px;
}
header .mob-menu ul li a{
    color: #404040;
    font-size: 16px;
    font-family: capsBold;
    padding-top: 3px;
    display: block;
    transition: 0.2s;
}
header .mob-menu ul .active a{
    color: #f2355e;
}
header .mob-menu ul .active ul li a {
    color: #404040;
}
header .mob-menu .socials{
    display: none;
}
header .mob-menu .socials ul{
    padding-right: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}
header .mob-menu ul li ul{
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s;
}
header .mob-menu ul li.active ul{
    max-height: 500px;
}
/* endheader */
/* section */
section{
    min-height: calc(100vh - 250px);
    padding-top: 90px;
}
.main-slider{
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    margin: 20px 0px;
}
.main-slider .right{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center
}
.main-slider .right .button-wrap a{
    display: flex;
    color: white;
    height: 50px;
    transition: 0.2s;
    font-size: 14px;
    align-items: center;
    background-color: #ededed;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0px 10px;
    font-family: capsBold;
    width: 200px;
    transition: 0.2s;
}
.main-slider .right .button-wrap a img{
    transition: 0.2s;
}
.main-slider .right .button-wrap a.les{
    background-color: #8a378a;
}
.main-slider .right .button-wrap a.les img{
    filter: brightness(0) invert(1);
}
.main-slider .right .button-wrap a.les:hover{
    background-color: white;
}
.main-slider .right .button-wrap a.les:hover img{
    filter: brightness(1) invert(0);
}
.main-slider .right .button-wrap a.les img.mob{
    display: none;
}
.main-slider .right .button-wrap .wisgmap{
    background-color: #F09B41;
    transition: 0.2s;
}
.main-slider .right .button-wrap .wisgmap img{
    filter: brightness(0) invert(1);
    transition: 0.2s;
    width: 24px;
}
.main-slider .right .button-wrap .wisgmap:hover{
    background-color: white;
    color: #f2355e;
}
.main-slider .right .button-wrap .wisgmap:hover span{
    color: #f2355e;
}
.main-slider .right .button-wrap .wisgmap:hover img{
    filter: none;
}

.main-slider .right .button-wrap .wisgmap:hover .arrow{
    filter: invert(39%) sepia(62%) saturate(5417%) hue-rotate(328deg) brightness(97%) contrast(96%);
}
.main-slider .right .button-wrap a.report-crime{
    background-repeat: no-repeat;
    background-image: url(../img/arr-circle-white.png);
    background-position: 94% center;
    transition: 0.2s;
    background-size: 25px 25px;
    text-align: center;
}
.main-slider .right .button-wrap a.report-crime span{
    display: block;
    width: auto;
    height: auto;
    background-repeat: no-repeat;
    background-image: url(../img/hand.png);
    background-position: center left;
    transition: 0.2s;
    margin-left: -1px;
    width: 100%;
    padding: 0px 5px;
}
.main-slider .right .button-wrap a.report-crime:hover{
    background-color: white;
    background-image: url(../img/arr-circle-hov.png);
    color: #f2355e;
}
.main-slider .right .button-wrap a.report-crime:hover span{
    background-image: url(../img/hand-hov.png);
    color: #f2355e;
}
.main-slider .right .button-wrap a span{
    color: white;
    transition: 0.2s;
    font-size: 14px;
    font-family: capsBold;
    display: block;
    text-align: center;
    line-height: 17px;
    padding-top: 4px;
}
.main-slider .right .button-wrap a .arrow{
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.main-slider .right .button-wrap a.report-crime{
    background-color: #f2355e;
}
.main-slider .right .button-wrap a.report-crime .arrow{
    filter: brightness(0%) invert(1);
}
.main-slider .right .button-wrap a.servisesBtn{
    background-color: #082C35;
}
.main-slider .right .button-wrap a.servisesBtn img{
    height: 25px;
    filter: brightness(0) invert(1);
}
.main-slider .right .button-wrap a.servisesBtn:hover{
    background-color: white;
}
.main-slider .right .button-wrap a.servisesBtn:hover span{
    color: #082C35;
}
.main-slider .right .button-wrap a.servisesBtn:hover img{
    filter: brightness(1) invert(0);
}
.main-slider .right .button-wrap a.fest.servisesBtn{
    background-color: white;
}
.main-slider .right .button-wrap a.fest.servisesBtn span{
    color: #191919;
}
.main-slider .right .button-wrap a.fest.servisesBtn:hover{
    background-color: #191919;
}
.main-slider .right .button-wrap a.fest.servisesBtn img{
    filter: brightness(0.3);
}
.main-slider .right .button-wrap a.fest.servisesBtn:hover img{
    filter: brightness(1) invert(0);
}
.main-slider .right .button-wrap a.fest.servisesBtn:hover span{
    color: white;
}
.main-slider .arr-wrap{
    position: relative;
    z-index: 4;
    margin-right: 150px;
    height: fit-content;
}
.main-slider .arr-wrap span{
    border: 1px solid white;
    width: 30px;
    height: 30px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
    cursor: pointer;
}
.main-slider .arr-wrap span:last-child{
    margin-bottom: 0px;
}
.main-slider .owl-carousel{
    height: 100%;
}
.main-slider .owl-dots{
    display:flex!important;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.main-slider .owl-dots .owl-dot{
    background-color: #8a8b85;
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 50%;
    outline: none;
    opacity: 0.9;
}
.main-slider .owl-dots .owl-dot.active{
    background-color: white;
    height: 9px;
    width: 9px;
    opacity: 1;
}
.main-slider .slider{
    width: 100%;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
}
.main-slider .slider .image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}
.main-slider .slider .middle{
    position: relative;
    z-index: 2;
    padding-left: 10px;
}
.main-slider .slider .middle ul{
    display: flex;
}
.main-slider .slider .middle ul li{
    color: white;
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 12px;
    font-family: caps;
}
.main-slider .slider .middle ul li a{
    color: white;
    display: flex;
    padding-top: 5px;
    align-items: center;
    margin-right: 20px;
    font-size: 12px;
    font-family: caps;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 20px;
    background-image: url(../img/icon.png);
}
.main-slider .slider .middle ul li a:hover{
    background-image: url(../img/icon-hov.png);
}
.main-slider .slider .middle ul li.catt-title{
    font-weight: normal;
    font-size: 14px;
}
.main-slider .slider .middle ul li.date{
    font-family: light;
}
.main-slider .slider .middle ul li img{
    width: unset!important;
    height: unset!important;
    margin-right: 12px;
}
.main-slider .slider .middle h2{
    font-size: 22px;
    color: white;
    margin: 20px 0px;
    font-family: caps;
    padding-right: 150px;
    max-height: 52px;
    overflow: hidden;
}
.main-slider .slider .middle .slider-btn{

    outline: none;
    background-color: white;
    color: #404040;
    border: none;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-family: caps;
    padding-top: 4px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
}
.main-slider .slider .middle .slider-btn img{
    margin: 0px 0px 4px 10px;
    width: unset;
    height: unset;
}
.main-slider .slider .overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.main-right{
    padding: 20px 0px;
}
.main-right .bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-right .bottom span{
    color: #666666;
    font-size: 20px;
    font-family: capsBold;
    text-align: center;
    display: block;
    line-height: 24px;
}
.main-right .bottom button{
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    /* border-radius: 16px; */
    border: 1px solid #f0f0f0;
    font-size: 14px;
    color: #4c4c4c;
    font-family: caps;
    background-color: transparent;
    font-weight: bold;
    padding-top: 5px;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    transition: 0.2s;
}
.main-right .bottom button:hover{
    border: 1px solid #4c4c4c;

}
.main-right .bottom button img{
    margin-left: 10px;
    margin-bottom: 5px;
}
.main-right .bottom .right{
    margin-left: 20px;
}
.line{
    background-color: #e6e6e6;
    margin: 20px 0px;
    height: 1px;
    width: 100%;
    /* padding-bottom: 20px; */
    /* border-bottom: 1px solid #e6e6e6; */
}
.news .big-block{
    height: 380px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.news .big-block .list li a:hover{
    background-image: url(../img/icon-hov.png);
}
.news .big-block .main-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.news .big-block .top{
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    z-index: 5;
    justify-content: space-between;
    padding-top: 25px;
}
.news .big-block .list{
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0px 10px;
    height: 25px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 10;
}
.news .big-block .list li a{
    font-family: capsBold;
    font-size: 12px;
    color: #757575;
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding-top: 4px;
    background-repeat: no-repeat;
    background-position:left center;
    background-image: url(../img/icon.png);
    padding-left: 19px;

}
.news .big-block .list li:last-child a{
    margin-right: 0px;
}
.news .big-block .list li img{
    margin: -6px 5px 0px 0px;
}
.catt-title{
    font-size: 14px;
    color: white;
    font-family: caps;
    align-items: center;
    display: flex;
    height: 25px;
    padding: 4px 10px 0px 10px;
    background-color: #f2355e;
}
.news .big-block .catt-title{
    margin-right: 20px;
    position: absolute;
    top: 0;
    right: 0;
}
.news .big-block .date{
    margin-left: 20px;
    display: flex;
    align-items: center;
    height: 25px;
    padding: 0px 5px;
    font-size: 12px;
    font-family: light;
    color: #757575;
    background-color: white;
    width: fit-content;
    margin-top: 10px;
}
.news .big-block .date img{
    margin-right: 5px;
}
.news .big-block .bottom{
    position: absolute;
    bottom: 0px;
    padding-left: 20px;
    margin-bottom: 20px;
    max-height: 75px;
    overflow: hidden;
    z-index: 1;
}
.news .big-block .bottom h2{
    font-size: 18px;
    color: white;
    font-family: capsBold;
}
.news .big-block .bottom p{
    color: white;
    font-size: 13px;
}
.news .big-block .background{
    background-image: linear-gradient(to top, black, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    z-index: 0;
}
.news.list-page .block-count:nth-child(3n+1) .catt-title{
    background-color: #f2355e !important;
}
.news.list-page .block-count:nth-child(3n-1) .catt-title{
    background-color: #008ba0!important;
}
.news.list-page .block-count:nth-child(3n+0) .catt-title{
    background-color: #8a378a!important;
}
.block{
    margin-bottom: 20px;
    transition: 0.2s;
    padding: 10px;
}
.block:hover{
    background-color: #caa5f1;
}
.block .top{

    overflow: hidden;
    position: relative;
    width: 100%;
    height: 240px;
}
.block .top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.block .top .catt-title{
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.block .bottom h3{
    font-size: 15px;
    color: #191919;
    font-family: caps;
    font-weight: bold;
    overflow: hidden;
    margin: 7px 0px 2px 0px;
    padding-top: 4px;
    max-height: 93px;
}
.main-page .block{
    height: 385px;
}
.main-page .news .block-wrap {
    padding: 0px;
}
.main-page .news .block-wrap .block{
    height: 382px;
    padding: 20px 20px 20px 20px;
}
.main-page .news .block-wrap .block:first-child{
    padding-bottom: 10px;
}
.main-page .news .block-wrap .block:last-child{
    padding-top: 10px;
}
.block .bottom .date{
    font-size: 12px;
    color: #757575;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    font-weight: bold;
}
.block .bottom .date img{
    margin-right: 5px;
}
.block .bottom .text{
    height: 60px;
    overflow: hidden;
}
.block .bottom p{
    font-size: 13px;
    color: #595959;
    /*font-weight: bold;*/
}
.block-wrap .block .list{
    overflow: hidden;
}
.block .list{
    display: flex;
    align-items: center;
    margin-top: 7px;
}
.block .list li a{
    font-size: 12px;
    color: #757575;
    margin-right: 15px;
    font-weight: bold;
    font-family: caps;
    background-repeat: no-repeat;
    background-position: center left;
    background-image: url(../img/icon.png);
    padding-left: 20px;
    padding-top: 6px;
}
.block .list li a:hover{
    background-image: url(../img/icon-hov.png);
}
.block .list li:last-child a{
    margin-right: 0px;
}
/*.block .list li img{*/
/*    margin: 0px 5px 4px 0px;*/
/*}*/
.title-wrapper{
    padding-left: 10px;
    margin-bottom: 17px;
    height: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.title-wrapper .main-title{
    font-size: 24px;
    color: #191919;
    font-family: capsBold;
    display: block;
    width: 100%;
    line-height: 1;
}
.title-wrapper .med-title{
    font-size: 16px;
    color: #757575;
    font-family: capsBold;
    position: relative;
}
.title-wrapper .med-title:before{
    content: '';
    height: 13px;
    background-color: #f2355e;
    width: 2px;
    position: absolute;
    left: -10px;
    top: 3px;
}
.more{
    font-size: 16px;
    font-family: caps;
    color: white;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2355e;
    width: 100%;
    padding-top: 4px;
    margin: 0px 10px;
    border: none;
}
.more:hover{
    color: white;
}
.more img{
    position: relative;
    margin-left: 10px;
    margin-bottom: 2px;
    transition: 0.2s;
    left: 0;
}
.more:hover img{
    left: 5px;
}
.block-wrap{
    height: 785px;
    background-color: #f0f0f0;
    padding: 20px;

    margin-bottom: 20px;
}
.block-wrap .block .catt-title{
    background-color: #caa5f1;
}
.block-wrap .block .bottom ul{
    /*justify-content: space-between;*/
}
.block-wrap .block .bottom ul li{
    /*margin-right: 0px;*/
}
.block-wrap .block .top{
    height: 200px;
}
.news .right .more{
    background-color: #8a378a;
    margin: 0px;
}
.block-wrap .block .catt-title{
    background-color: #8a378a;
}
.news .our-work .title-wrapper{
    height: auto;
}
.news .our-work .title-wrapper .med-title{
    color: #191919;
}
.news .our-work .box{
    height: 260px;
    overflow: hidden;
    position: relative;
    transition: 0.2s;
    margin-bottom: 20px;
}
.news .our-work .box:hover h2{
    border-bottom: 2px solid white;
}
.news .our-work .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news .our-work .box span{
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.news .our-work .box h2{
    color: white;
    font-family: capsBold;
    font-size: 24px;
    text-align: center;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
}
.news .our-work .box .overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(242, 53, 94, 0.85);
    transition: 0.2s;
    border: 2px solid transparent;
}
.news .our-work .box-overlay:nth-child(2) .box .overlay{
    background-color: rgba(0, 139, 160, 0.85);
}
.news .our-work .box-overlay:nth-child(3) .box .overlay{
    background-color: rgba(138, 55, 138, 0.85);
}
.news .our-work .box:hover .overlay{
    border: 2px solid white;
}
.news .our-work .box .overlay.purple{
    background-color: rgba(138, 55, 138, 0.85)!important;
}
.news .our-work .box .overlay.blue{
    background-color:rgb(0, 139, 160, 0.85)!important;
}
.hide-event{
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s;
    position: absolute;
    background-color: white;
    width: 94.5%;
    z-index: 100;
}
.hide-event.active{
    max-height: 400px;
    background-color: white;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.10);
}
.pub-list li{
    height: 146.5px;
    overflow: hidden;
    transition: 0.2s;
    transition-timing-function: ease-in-out;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}
.pub-list li a{
    display: flex;
    height: 100%;
    align-items: center;
}
.pub-list li a .img-cont{
    height: 100%;
    width: 160px;
    overflow: hidden;
    flex-shrink: 0;
}
.pub-list li a .img-cont img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pub-list li a .rightside{
    width: calc(100% - 160px);
    margin-left: 10px;
}
.pub-list li a .rightside h6{
    font-size: 14px;
    color: #595959;
    font-weight: bold;
}
.pub-list li a .rightside .date{
    font-family: light;
    color: #757575;
    font-size: 11px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
    position: absolute;
    left: 10px;
    bottom: 10px;
    background-color: white;
    padding: 2px 10px;
}
.pub-list li a .rightside .date img{
    margin-right: 5px;
}
.news .our-work .pub-wrap{
    height: 100%;
}
.news .our-work .pub-wrap .pub-list{
    width: 100%;
}
.pub-list li:hover{
    background-color: #caa5f1;
}
.our-work .pub-list li:hover{
    background-color: #caa5f1;
}
.main-page .pub-list li:hover{
    background-color: #caa5f1;
}
.main-page .our-work .pub-list li:hover{
    background-color: #caa5f1;
}
.pub-list li:hover h6{
    color: white!important;
}
.mediatek .pub-wrap .more{
    background-color: #008ba0;
}
/* მედიათეკა */
.mediatek .video-box{
    height: 197.5px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.block.video-box{
    padding: 0px;
}
.block.video-box:hover{
    background-color: transparent;
}
.mediatek .video-box .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc( 100% - 34px);
    background-color: rgba(242, 53, 94, 0.85);
    z-index: 0;
    transform: scale(0);
    transition: 0.3s;
    border-radius: 50%;
    height: 100%;
}
.mediatek .video-box .top:hover .overlay{
    z-index: 5;
    transform: scale(1);
    border-radius: 0;
}
.mediatek .video-box .top:hover .img-container{
    background-image: url(../img/Brow.svg);
}
.mediatek .video-box .top{
    position: relative;
    width: 100%;
    height: calc(100% - 34px);
    cursor: pointer;
}
.mediatek .video-box .top iframe{
    border-radius: 0px 0px 5px 5px;
}
.mediatek .video-box .background{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mediatek .video-box .img-container{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 6;
    background: no-repeat center url(../img/Brow_stroke.svg);
    height: 70px;
    width: 77px;
}
/*.mediatek .video-box .top:hover .img-container{*/
/*    background-image: url(../img/Brow.svg);*/
/*}*/
/*.mediatek .video-box .top:hover .overlay {*/
/*    z-index: 5;*/
/*    transform: scale(1);*/
/*    border-radius: 0;*/
/*}*/
.mediatek .video-box .bottom{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 39px;
    background-color: #f0f0f0;
    padding: 5px;
    overflow: hidden;
}
.mediatek .video-box .bottom h5{
    color: #4c4c4c;
    font-size: 14px;
    font-family: capsBold;
}
.mediatek .pub-list li{
    height: 130px;
    margin-bottom: 15px;
}
.mediatek.page .block .top{
    height: 220px;
}
.mediatek.page .video-box{
    height: auto;
}
.mediatek.page .video-box .top{
    height: 220px;
}
.mediatek.page .video-box .desc h3{
    font-size: 16px;
    color: #191919;
    font-family: caps;
    font-weight: bold;
    margin: 7px 0px 2px 0px;
    line-height: 1;
    padding-top: 4px;
}
.mediatek.page .video-box .desc .date {
    font-size: 12px;
    color: #757575;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    font-weight: bold;
}
.mediatek.page .video-box .desc .text,
.mediatek.page .video-box .desc .text p{
    font-size: 13px;
    color: #595959;
    font-weight: bold;
}
.mediatek-title{
    margin: 0px;
    display: block;
    width: 100%;
    text-align: center;
}
.mediatek.inside .video-box{
    height: auto;
}
.mediatek.inside .video-box .top{
    height: 501px;
    overflow: hidden;
}
.sharethis-inline-share-buttons{
    margin: 10px 0px;
}
.sharethis-inline-share-buttons .st-btn{
    margin-right: 20px;
}
.mediatek.inside .video-box .desc h3{
    margin: 17px 0px 3px 0px;
    font-size: 16px;
    color: #191919;
    font-family: caps;
    font-weight: bold;
    margin: 7px 0px 2px 0px;
    padding-top: 4px;
}
.mediatek.inside .video-box .desc .date{
    font-size: 12px;
    color: #757575;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.mediatek.inside .video-box .desc .text{
    max-height: unset;
    height: auto;
    font-size: 13px;
    color: #595959;
    font-weight: bold;
}
.mediatek.inside .video-box .desc .text p{
    font-size: 13px;
    color: #595959;
    font-weight: bold;
}
.mediatek.inside .video-box .overlay{
    height: 100%;
}
.topic.libraryPage .header .topic-top .center span img{
    margin-left: 10px;
}
.topic .header .topic-top .center .aboutLibrary{
    color: #191919;
    font-family: caps;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 30px 17px 30px;
    background-color: rgba(255, 255, 255, 0.9);
}
.topic .header .topic-top .center .aboutLibrary .aboutText {
    font-size: 14px;
    max-height: 250px;
    overflow: scroll;
    padding-right: 10px;
}
.topic .header .topic-top .center .aboutLibrary .aboutText::-webkit-scrollbar {
    width: 5px;
}
.topic.libraryPage .header .topic-top .center{
    width: 90%;
}
.topic .header .topic-top .center .aboutLibrary .title{
    font-family: caps;
    color: #f2355e;
    font-size: 16px;
    width: 100%;
    text-align: center;
    display: block;
}
.libraryPage .list .text{
    overflow-y: scroll;
    max-height: 235px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: bold;
}
.topic.libraryPage .header .topic-top{
    height: 350px;
}
.libraryPage .list .text p{
    font-size: 14px;
    font-weight: bold;
}
.topic.libraryPage .header .topic-top .center .select{
    justify-content: center;
}
.libraryPage .list .close{
    height: 17px!important;
    margin: -18px -9px 10px 17px;
}
.library-wrap.home{
    margin-top: 20px;
}
.library-wrap{
    margin-bottom: 20px;
}
.library-wrap .title-wrapper{
    height: auto;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.library-wrap .title-wrapper .full{
    font-size: 12px;
    color: #808080;
    font-family: capsBold;
    padding-top: 4px;
    transition: 0.2s;
    margin-bottom: 2px;
}
.library-wrap .title-wrapper .full img{
    margin: 0px 0px 4px 5px;
    transition: 0.2s;
}
.library-wrap .title-wrapper .full:hover{
    text-decoration: underline;
}
.library-wrap .library{
    padding: 29px 20px;
    background-image: linear-gradient(to right, #59d4e8, #cd5ee3);
    display: flex;
    justify-content: flex-start;
}
.library-wrap .library .book{
    width: 23%;
    border-radius: 0px 5px 5px 0px;
    position: relative;
    height: 250px;
    margin-right: 20px;
}
.library-wrap .library .book:last-child{
    margin-right: 0px;
}
.book .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;/*100%*/
    height: 100%;
    background: white;
    border-radius: 0px 5px 5px 0px;
    transition: .5s;
    transform: perspective(2000px) rotateY(0deg);
    transform-origin: left;
    overflow: hidden;
}
.book .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.book:hover .image{
    transform: perspective(2000px) rotateY(-90deg);
}
.book .details {
    width: 100%;
    height: 100%;
    border-radius: 0px 5px 5px 0px;
    overflow: hidden;
}
.book .details .center {
    padding: 20px 10px;
    background: white;
    height: 100%;
}
.library-wrap .library .book h2{
    color: #4c4c4c;
    font-size: 14px;
    font-family: caps;
    font-weight: bold;
    line-height: normal;
}
.library-wrap .library .book h6{
    font-size: 12px;
    color: #999999;
    font-family: light;
    line-height: normal;
    margin-bottom: 20px;
}
.library-wrap .library .book .text{
    height: 40px;
    overflow: hidden;
}
.library-wrap .library .book .text,
.library-wrap .library .book .text *{
    color: #666666;
    font-size: 12px;
    font-weight: bold;
}
.library-wrap .library .book a{
    font-size: 12px;
    font-family: capsBold;
    padding-top: 6px;
    color: #808080;
    border: 1px solid #e6e6e6;
    height: 27px;
    display: flex;
    align-items: center;
    width: fit-content;
    outline: none;
    padding: 4px 10px 0px 10px;
    margin-top: 10px;
}
.library-wrap .library .book .list a {
    font-size: 12px;
    color: #757575;
    margin-right: 15px;
    font-weight: bold;
    font-family: caps;
    background-repeat: no-repeat;
    background-position: center left;
    background-image: url(../img/icon.png);
    padding-left: 20px;
    padding-top: 6px;
    border: none;
}
.library.inside{
    display: block!important;
}
.library-wrap .library .book .list a:hover {
    background-image: url(../img/icon-hov.png);
}
.library-wrap .library .book a img{
    margin-left: 5px;
    margin-bottom: 5px;
}
.keyboard{
    background-color: #f5f5f5;
    padding: 20px;
}
.keyboard ul{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}
.keyboard ul li a{
    font-family: caps;
    font-size: 24px;
    color: #757575;
    padding-top: 4px;
    height: 36.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: 0.4s;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: -50px;
}
.keyboard ul li a:hover,
.keyboard ul li a.active{
    background-position: 0px;
    background-color: #f2355e;
    color: white;
}
/* main-page-library */
/* library-page */
.dropdown{
    width: 180px;
    outline: none;
}
.dropdown span{
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    position: relative;
    background-color: #ebebeb;
    cursor: pointer;
    color: #808080;
    font-family: light;
    font-size: 13px;
}
.dropdown .arrow{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.dropdown ul{
    /* border: 1px solid #ebebeb; */
    /* transition: 0.2s; */
    position: absolute;
    width: 100%;
    z-index: 5;
    display: none;
    max-height: 200px;
    overflow-y: scroll;
}
.dropdown ul::-webkit-scrollbar {
    width: 5px;
}
.dropdown ul::-webkit-scrollbar-track {
    background-color: #ebebeb;
}
.dropdown ul li{
    display: flex;
    height: 40px;
    align-items: center;
    padding: 0px 20px;
    font-size: 13px;
    color: #808080;
    background-color: #ebebeb;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.2s ease-in-out both;
    animation-play-state: paused;
}
.dropdown.active ul{
    display: block!important;
}
.dropdown.active ul li{
    animation-play-state: running;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.library-wrap.page .top{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.filter{
    display: flex;
    align-items: center;
    margin-left: 20px;
    height: 40px;
    position: relative;
}
.news.list-page .filter{
    margin-bottom: 15px;
}
.filter input{
    height: 100%;
    padding: 0px 10px;
    width: 350px;
    border: 1px solid #e6e6e6;
    font-size: 13px;
    outline: none;
}
.filter input:focus{
    border: 1px solid #f2355e;
}
.filter button{
    background-color: #f2355e;
    font-size: 13px;
    height: 100%;
    display: flex;
    color: white;
    align-items: center;
    border: none;
    padding: 0px 20px;
    outline: none;
    position: absolute;
    cursor: pointer;
    right: 0;
}
.library-wrap.page .library .book .title{
    font-family: capsBold;
    font-size: 13px;
    color: #757575;
    display: flex;
    align-items: center;
    margin-right: 20px;
    padding-top: 5px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../img/icon.png);
    padding-left: 19px;
}
.library-wrap.page .library .book h2{
    padding-right: 30px;
}
.library-wrap.page .library .book .popup-open{
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: block;
    background: no-repeat center url(../img/back.svg);
    background-size: 16px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    position: absolute;
    right: 10px;
    top: 10px;
    margin-top: 0px;
    transform: rotateZ(180deg);
    transition: 0.2s;
}
.library-wrap.page .library .book .popup-open:hover{
    background-color: #f2355e;
    border: 1px solid transparent;
    background-image: url(../img/back-hov.svg);
}
.library-wrap.page .library .book .popup-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 200;
    background-color: rgba(0,0,0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition-timing-function: ease-in;
    transition: 0.4s;
    transform: scale(0);
}
.library-wrap.page .library .book .popup-wrap.active{
    transform: scale(1);
}
.library-wrap.page .library .book .popup-wrap .popup{
    display: flex;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-image{
    width: 500px;
    height: 500px;
    flex-shrink: 0;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details{
    padding: 20px;
    background-color: white;
    position: relative;
    width: 100%;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details .text{
    max-height: 362px;
    overflow: scroll;
    height: auto;
    padding-right: 10px;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details .close-btn{
    position: absolute;
    right: 20px;
    top: 10px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.2s;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details .close-btn:hover{
    opacity: 1;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details .close-btn img{
    height: 20px;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details a{
    font-family: capsBold;
    font-size: 12px;
    color: #757575;
    display: flex;
    align-items: center;
    padding-top: 4px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../img/icon.png);
    padding-left: 19px;
    border: none;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details .list{
    display: flex;
    flex-wrap: wrap;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details .list li{
    margin-right: 10px;
}
.library-wrap.page .library .book .popup-wrap .popup .pop-details a:hover{
    background-image: url(../img/icon-hov.png);
}
/* .library-wrap.page .top button{
    background-color: #f2355e;
    font-size: 13px;
    height: 40px;
    display: flex;
    color: white;
    align-items: center;
    border: none;
    padding: 0px 20px;
    margin-right: 20px;
    outline: none;
    cursor: pointer;
} */
/* .library-wrap.page .top .right{
    display: flex;
    align-items: center;
}
.library-wrap.page .top .right div{
    display: flex;
}
.library-wrap.page .top .right span{
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    border: 1px solid #ebebeb;
    margin-right: 20px;
    color: #808080;
    font-size: 13px;
}
.library-wrap.page .top .right span:last-child{
    margin-right: 0px;
} */
.library-wrap.page{
    margin: 55px 0px;
}
.library-wrap.page .library{
    /* display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
    padding: 10px 0px;
    background: transparent;
}
.library-wrap.page .library .book{
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    height: 220px;
}
.library-wrap.page .library .book:hover .title{
    background-image: url(../img/icon-hov.png);
}
.library-wrap.page .library .book .image{
    width: 150px;
    flex-shrink: 0;
    position: inherit;
    z-index: 2;
    box-shadow: 6px 0px 15px -8px rgba(0,0,0,0.5);
}
.library-wrap.page .library .book .details{
    /* position: absolute; */
    /* left: 100%; */
    border: 1px solid #ebebeb;
    height: 90%;
    width: 230px;
    position: relative;
    z-index: 1;
    padding-left: 10px;
    left: -5px;
}
.library-wrap.page .library .book .details .text{
    height: 75px;
}
.library-wrap.page .library .book:hover .image{
    transform: none;
}
.pagination-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-wrap .page-item{
    margin: 0px 5px;
}
.pagination-wrap .page-link{
    border-radius: 0px!important;
    border: 1px solid #cbcbcb;
    height: 30px;
    display: flex;
    align-items: center;
    color: #757575;
    font-size: 14px;
    transition:background-color 0.2s;
    box-shadow: none!important;
    background: no-repeat center transparent;
}
.pagination-wrap .page-link:hover{
    background-color: #f2355e;
    border: 1px solid transparent;
    color: white;
}
.pagination-wrap .page-link.prev{
    background-image: url(../img/pag-left.png);
    padding: 0px 16px;
}
.pagination-wrap .page-link.next{
    background-image: url(../img/pag-right.png);
    padding: 0px 16px;
}
.pagination-wrap .page-link.prev:hover{
    background-image: url(../img/pag-left-hov.png);
}
.pagination-wrap .page-link.next:hover{
    background-image: url(../img/pag-right-hov.png);
}
.pagination-wrap .page-link img{
    transition: 0s;
}
.page-item.active .page-link{
    background-color: #f2355e;
    border: 1px solid #f2355e;
}
/* library-page */
/* contact-page */
.contact-page {
    margin: 50px 0px;
    padding: 50px 80px 50px 20px;
    background-color: #f0f0f0;
    position: relative;
}
.contact-page:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 400px;
    background-color: #f2355e;
    z-index: 0;
}
.form .contact-title{
    font-size: 30px;
    font-family: caps;
    font-weight: bold;
    color: #595959;
    position: relative;
    margin-bottom: 37px;
    line-height: normal;
}
.form .contact-title:after{
    content: '';
    position: absolute;
    bottom: -13px;
    width: 80px;
    height: 2px;
    background-color: #f2355e;
    left: 0;
}
.form input,
.form textarea{
    width: 100%;
    background-color: white;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    color: #595959;
    padding: 3px 20px 5px 20px;
    height: 40px;
    font-weight: bold;
    outline: none;
    margin-bottom: 20px;
    transition: 0.2s;
}
.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus{
    border: 1px solid #f2355e;
}
.form textarea{
    height: 80px;
}
.form textarea::-webkit-scrollbar{
    width: 5px;
}
.form textarea::-webkit-scrollbar-thumb{
    cursor: pointer;
}
.form .capcha{
    position: relative;
    top: -7px;
}
.form .capcha img{
    position: absolute;
    right: 0;
    height: 40px;
}
.form .capcha input{
    padding-right: 100px;
}
.form .more{
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 11px;
}
.contact-page .google-map{
    overflow: hidden;
    height: 487px;
    border: 1px solid white;
    position: relative;
    z-index: 1;
}
.contact-page .google-map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* contact-page */
/* terminology */
.terminology{
    margin: 50px 0px;
}
.terminology .keyboard{
    background-color: transparent;
    padding: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
}
.terminology .keyboard ul{
    display: flex;
    justify-content: space-between;
}
.terminology .keyboard ul li{
    width: 100%;
    height: 35px;
}
.terminology .list{
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */
    margin: 25px 0px 50px 0px;
    grid-gap: 20px;
    /* display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between; */
    column-count: 3;
}
.terminology .list li{
    margin-bottom: 20px;
    break-inside: avoid-column;
    border: 1px solid #e6e6e6;
    padding: 10px;
}
.terminology .list li h3{
    color: #181818;
    font-size: 18px;
    font-family: capsBold;
    margin-bottom: 5px;
    line-height: normal;
}
.terminology .list li .text,
.terminology .list li .text p{
    color: #757575;
    font-size: 13px;
    text-align: justify;
}
/* terminology */

.news.list-page{
    margin: 50px 0px 30px 0px;
}
.news.list-page .header{
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 50px;
}
.news.list-page .header .dropdown-wrapper{
    display: flex;
}
.news.list-page .header .dropdown-wrapper .dropdown{
    margin-right: 20px;
}
.news.list-page .header .dropdown-wrapper .dropdown:last-child{
    margin-right: 0px;
}
.news.list-page .header .dropdown{
    margin-bottom: 15px;
}
.news.list-page .header .title{
    color: #f2355e;
    font-size: 48px;
    font-family: caps;
    margin: 0px 50px;
    display: block;
    line-height: 1;
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
}
.topic{
    margin: 20px 0px 50px 0px;
}
.topic .filter{
    margin-left: 0px;
}
.topic .header{
    margin-bottom: 20px;
}
.topic .header .topic-top{
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.topic .header .topic-top .center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.topic .header .topic-top .center h6{
    color: #191919;
    font-family: caps;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 30px 17px 30px;
    background-color: rgba(255, 255, 255, 0.9);
}
.topic .header .topic-top .list{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    left: 50%;
    padding: 20px;
    background-color: #ffffff;
    height: 280px;
    width: 80%;
    padding-bottom: 30px;
    transition: 0.2s;
}
.topic .header .topic-top .list.active{
    transform: translate(-50%, -50%) scale(1);
}
.topic .header .topic-top .list .close{
    height: 25px;
}
.topic .header .topic-top .list .close img{
    height: 100%;
}
.topic .header .topic-top .list .all{
    color: #ff3434;
    font-size: 14px;
    display: block;
    font-family: capsBold;
    padding-top: 3px;
}
.topic .header .topic-top .list ul{
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    grid-gap: 10px;
    height: 100%;
    overflow: hidden;
}
.topic .header .topic-top .list ul li a{
    color: #808080;
    font-size: 14px;
    transition: 0.2s;
}
.topic .header .topic-top .list ul li a:hover{
    color: #f2355e;
}
.topic .header .topic-top .center .select{
    height: 33px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    justify-content: space-between;
    font-size: 13px;
    color: #808080;
    background-color: #ebebeb;
    cursor: pointer;
    margin-top: -1px;
}
.topic .header .topic-top .img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.topic .header .dropdown-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topic .header .dropdown-container .dropdown-wrapper{
    display: flex;
}
.topic .header .dropdown-container .dropdown-wrapper .dropdown{
    margin-right: 20px;
}
.topic .header .dropdown-container .dropdown-wrapper .dropdown:last-child{
    margin-right: 0;
}
/* news-inside */
.news-inside .return-back{
    display: flex;
    position: absolute;
    top: -35px;
    height: 25px;
    overflow: hidden;
}
.news-inside .return-back li a{
    padding-right: 15px;
    margin-right: 5px;
    color: #404040;
    font-size: 12px;
    font-weight: bold;
    background-image: url(../img/arrow-rightd.png);
    background-repeat: no-repeat;
    background-position: 99% center ;
    transition: 0.2s;
}
.news-inside .return-back li a:hover {
    color: #f2355e;
}
.back-to-top {
    background-color: #008ba0;
    position: fixed;
    bottom: 105px;
    right: 30px;
    display: none;
}
.btn-light:hover {
    background-color: #8a378a;
}
.news-inside .return-back li:last-child a{
    background-image: none;
    color: #f2355e;
}
.news-inside{
    margin: 40px 0px 50px 0px;
}
.news-inside .block{
    padding: 0px;
}
.news-inside.library-wrap.page .block .bottom h3{
    margin-top: 0px;
}
.news-inside .block:hover{
    background-color: transparent;
}
.news-inside.library-wrap.page .block .top{
    height: 450px;
    width: 102%;
}
.news-inside .block .top{
    height: 410px;
}
.news-inside .block:hover .top img{
    transform: none;
}
.news-inside .block .bottom h3{
    margin: 17px 0px 3px 0px;
    max-height: unset;
}
.news-inside .block .bottom .text{
    max-height: unset;
    height: auto;
    font-size: 13px;
    color: #595959;
}
.news-inside .block .bottom .text p{
    text-align: justify;
    margin-bottom: 10px;
}
.news-inside .block .bottom .text ul{
    display: block;
    background-color: transparent;
}
.news-inside .block .bottom .text ul li{
    color: #595959;
}
.news-inside .block .bottom .text h1, h2, h3, h4, h5, h6{
    margin-bottom: 10px;
}
.news-inside .block .bottom .text a{
    color: #f2355e!important;
}
.news-inside .block .bottom ul{
    background-color: #ebebeb;
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 4px 10px 4px 10px;
    margin-bottom: 10px;
}
.news-inside .block .bottom ul li{
    color: #757575;
}
.news-inside .title-wrapper{
    height: auto;
}
.news-inside .pub-list li{
    margin-bottom: 20px;
    height: 110px;
}
.news-inside .keyboard ul{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.news-inside .fb-comments{
    margin-left: -8px;
}
.about .ab-rightside{
    height: calc( 100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: space-between;
}
/* news-inside/ */
/* about */
.about{
    margin: 50px 0px;
}
.nav.nav-tabs{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: unset;
    border: none;
}
.nav.nav-tabs li{
    width: 25%;
    margin-right: 20px;
}
.nav.nav-tabs li:last-child{
    margin-right: 0px;
}
.nav.nav-tabs li a{
    background-color: #ebebeb;
    color: #808080;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    transition: 0.2s;
    border-radius: 0px;
    border: none!important;
}
.nav.nav-tabs li a:hover,
.nav.nav-tabs li a.active{
    background-color: #f2355e;
    color: white;
}
.about .main-img{
    /*height: 400px;*/
    overflow: hidden;
    margin-bottom: 16px;
}
.about .main-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .ab-leftside{
    height: 580px;
    width: 100%;
    margin-bottom: 40px;
}
.about .ab-leftside img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .ab-rightside.text,
.about .ab-rightside.text p{
    text-align: justify;
}
.about .ab-rightside .max-height{
    max-height: 479px;
    overflow: hidden;
}
.about .see-full{
    padding: 0px 10px;
    color: white;
    font-family: caps;
    font-size: 12px;
    height: 30px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding-top: 4px;
    background-color: #f2355e;
    margin-top: 17px;
}
.about .see-full img{
    margin-left: 10px;
    margin-bottom: 4px;
}
.about .title{
    font-size: 36px;
    font-family: caps;
    display: flex;
    width: 100%;
    justify-content: center;
    color: #595959;
}
.about .text,
.about .text p{
    font-size: 13px;
    color: #595959;
}
.about .about-3 .list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.about .about-3 .list li a{
    display: flex;
    height: 140px;
    transition: 0.2s;
    border: 1px solid white;
}
.about .about-3 .list li a:hover{
    background-color: #59d4e8;
}
.about .about-3 .list li a:hover *{
    color: white!important;
}
.about .about-3 .list li a .leftside{
    width: 180px;
    height: 100%;
    border: 1px solid #e6e6e6;
    margin-right: 20px;
    flex-shrink: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about .about-3 .list li a .leftside img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .about-3 .list li a .rightside{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}
.about .about-3 .list li a .rightside h3{
    font-size: 18px;
    font-family: capsBold;
    color: #404040;
    display: block;
    width: 100%;
}
.about .about-3 .list li a .rightside .desc{
    max-height: 95px;
    overflow: hidden;
    padding-right: 10px;
}
.about .about-3 .list li a .rightside .desc,
.about .about-3 .list li a .rightside .desc p{
    color: #757575;
    font-size: 13px;
}
.about-wrap{
    margin-bottom: 20px;
}
.about-wrap .list li{
    cursor: pointer;
}
.img-frame img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-frame{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: rgba(0,0,0,50%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.popup-frame.active{
    display:flex;
}
.popup-frame .pop-up{
    width: 85%;
    height: 60vh;
    border: 5px solid #f2355e;
    background-color: #fff;
    border-radius: 12px; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 0px;
}
.popup-frame .popup-content{
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0px 40px;
    position: relative;
}
.popup-frame .popup-content .img-frame{
    height: 300px;
    max-width: 400px;
}
.popup-frame .close{
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: top;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: 0.2s;
}
.popup-frame .close .line{
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0px;
    transform: rotate(-45deg);
    background-color: #f2355e;
}
.popup-frame .close .line:last-child{
    transform: rotate(45deg);
}
.popup-frame .left-side{
    width: 70%;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-frame .popup-content h3{
    font-size: 57px;
    font-family: capsBold;
    color: #404040;
    display: block;
    width: 100%;
}
.popup-frame .popup-content .desc{
    color: #757575;
    font-size: 18px;
    width: 100%; 
}

/* about/ */
/* work */
.work{
    margin: 50px 0px;
}
.work .list-wrap{
    display: flex;
    justify-content: center;
}
.work .list-wrap .nav.nav-tabs{
    margin-bottom: 0px;
}
.work .top-background{
    background: no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    position: relative;
    margin-bottom: 20px;
}
.work .top-background span{
    display: flex;
    padding: 0px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #191919;
    font-family: caps;
    height: 50px;
    padding-top: 6px;
    align-items: center;
    font-size: 30px;
}
.work .top-background h6{
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 14px;
    color: white;
    font-family: caps;
    text-shadow: 0px 0px 3px #000000;
}
.work .text,
.work .text p{
    font-size: 13px;
    color: #595959;
}

.for-news-block:nth-child(3n+1) .catt-title{
    background-color: #f2355e!important;
}

.for-news-block:nth-child(3n-1) .catt-title{
    background-color: #008ba0!important;
}
.for-news-block:nth-child(3n+0) .catt-title{
    background-color: #8a378a!important;
}
.relative{
    position: relative;
}
html{
    scroll-behavior: smooth;
}
/* work */
/* services */
.services{
    margin: 50px 0px;
}
.services .title{
    width: 100%;
    display: block;
    text-align: center;
    font-family: caps;
    font-size: 20px;
    color: #404040;
    font-weight: bold;
    margin-bottom: 20px;
}
.services .box{
    margin-bottom: 20px;
    cursor: pointer;
}
.services .box:hover h3{
    color: #f2355e;
}
.services .box .top{
    height: 190px;
    width: 100%;
    overflow: hidden;
}
.services .box .top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services .box .desc h3{
    font-size: 16px;
    font-family: caps;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 0;
    transition: 0.2s;
}
.services .contactUs{
    text-align: center;
    border-top: 1px solid black;
    padding-top: 7px;
}
.services .contactUs span{
    font-size: 16px;
    font-family: caps;
    font-weight: bold;
    margin-bottom: -3px;
    display: block;
}
.services .contactUs span b{
    font-weight: normal;
    margin-left: 5px;
}
.services .popup{
    background-color: rgba(0,0,0, 0.7);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 500;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: 0.45s;
}
.services .popup.active{
    transform: scale(1);
}
.services .popup.active .inner{
    opacity: 1;
}
.services .popup .inner{
    height: 430px;
    background-color: white;
    width: 1110px;
    border-radius: 20px;
    display: flex;
    position: relative;
    transition: 0.3s;
    transition-delay: 0.50s;
    opacity: 0;
}
.services .popup .inner .left{
    padding: 20px;
    overflow: hidden;
    flex-shrink: 0;
    width: 50%;
}
.services .popup .inner .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0px 0px 10px;
}
.services .popup .inner .right{
    width: 50%;
    padding: 20px;
    padding-left: 0px;
    overflow-y: scroll;
}
.services .popup .inner .right .popupTitle{
    font-size: 18px;
    font-family: caps;
    font-weight: bold;
    margin-bottom: 4px;
}
.services .popup .inner .right .text p{
    line-height: 16px;
    font-size: 15px;
}
.services .popup .inner .right .text ul{
    margin-left: 18px;
}
.services .popup .inner .right .text .list{
    margin-top: 10px;
}
.services .popup .inner .right .text .list .sm-title{
    font-family: caps;
    color: #404040;
    font-weight: bold;
    margin-bottom: -3px;
    display: block;
}
.services .popup .inner .right .text ul li{
    font-size: 15px;
}
.services .popup .closeBtn{
    position: absolute;
    top: -8px;
    right: -7px;
    z-index: 5;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
.services .popup .closeBtn:hover{
    background-color: #f2355e;
}
.services .popup .closeBtn:hover img{
    filter: brightness(0) invert(1);
}
.services .popup .closeBtn img{
    height: 15px;
}
.projects .nav.nav-tabs{
    justify-content: center;
    margin-bottom: 30px;
}
.projects .nav.nav-tabs li{
    width: fit-content;
}
.project-item{
    margin-top: 20px;
}
.project-item .project-head{
    display: flex;
    width: 100%;
    position: relative;
    cursor: pointer;
    padding-right: 50px;
}
.project-item .img-frame{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #f2355e;
    margin-right: 20px;
    flex-shrink: 0;
}
.project-item .img-frame img {
    width: 60px;
    height: auto;
    transform: translate3d(0px, 0, 1px);
    object-fit: contain;
}
.project-item .text{
    display: flex;
    flex-direction: column;
}
.project-item .title{
    font-size: 16px;
    font-weight: bold;
}
.project-text{
    margin-top: 10px;
}
.project-item .project-text{
    display: none;
}
.project-item.active .text .btn img{
    transform: rotate(180deg);
}
.project-text p{
    font-size: 14px;
}
.project-item .text .btn{
    position: absolute;
    right: 0;
}
.project-item .text .btn img{
    width: 14px;
    transition: 0.2s;
}
/* footer */
footer .footer-background{
    padding: 45px 0px;
    background: repeat center url(../img/footer-back.png);
}
footer .footer-background .arrow-top{
    border-radius: 50%;
    width: fit-content;
    background-color: #f2355e;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    justify-content: center;
    position: absolute;
    right: 20px;
    bottom: 30%;
}
footer .footer-background .arrow-top img{
    height: 10px;
}
footer .logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
footer .logo img{
    height: 90px;
}
footer .logo p{
    width: 90%;
    color: #666666;
    text-align: left;
    display: block;
    font-size: 12px;
    font-weight: bold;
    font-family: caps;
    margin-top: 10px;
}
footer .copyright{
    background-color: #f2355e;
    color: white;
    font-size: 12px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .copyright span{
    font-weight: bold;
    color: white;
    display: block;
    margin-left: 4px;
}
footer .copyright span b{
    color: #fcb64e;
}
footer .title{
    font-family: caps;
    color: #191919;
    font-size: 16px;
    font-weight: bold;
}
footer ul li{
    line-height: 15px;
    margin-bottom: 8px;
}
footer ul li a{
    color: #757575;
    transition: 0.2s;
    font-size: 14px;
    font-weight: bold
}
footer ul li a:hover{
    color: #f2355e;
}
footer .langs{
    line-height: inherit;
}
footer .langs .title{
    line-height: inherit;
    display: block;
}
footer .langs ul{
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1;
}
footer .footer-contact .item{
    margin: 5px 0px;
}
footer .langs .item{
    transition: 0.2s;
    cursor: pointer;
    color: #595959;
    font-weight: bold;
    margin-right: 10px;
}
footer .langs .item:after{
    content: '';
    width: 1.5px;
    height: 12px;
    background-color: #595959;
    display: inline-block;
    margin: 0px 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
footer .langs .item:last-child:after{
    display: none;
}
footer .langs .item:hover,
footer .langs .item.active{
    color: #f2355e;
}
footer .socials .title{
    margin-bottom: 5px;
    margin-top: 12px;
    display: block;
}
footer .socials ul{
    display: flex;
}
footer .socials ul li a{
    background: transparent no-repeat left center;
    transition: 0.2s;
    width: 16px;
    height: 16px;
    display: block;
    margin-right: 10px;
}
footer .socials .fc{
    background-image: url(../img/facebook.png);
}
footer .socials .inst{
    background-image: url(../img/instagram.png);
}
footer .socials .tw{
    background-image: url(../img/twitter.png);
}
footer .socials .fc:hover{
    background-image: url(../img/facebook-hov.png);
}
footer .socials .inst:hover{
    background-image: url(../img/instagram-hov.png);
}
footer .socials .tw:hover{
    background-image: url(../img/twitter-hov.png);
}
footer .contact .title{
    margin-top: 12px;
    margin-bottom: 3px;
    display: block;
}
footer .contact ul li{
    color: #595959;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}
footer .contact ul li img{
    margin-right: 5px;
}
.news.list-page.post-page .header{
    justify-content: center;
}
@media only screen and (max-width: 1200px) {
    .services .box .top{
        height: 150px;
    }
    .popup-frame .popup-content{
        flex-direction: column;
        overflow-y: scroll;
        padding: 17px;
    }
    .popup-frame::-webkit-scrollbar-thumb {
      background: #f2355e; 
      border-radius: 12px;
    }

    .popup-frame::-webkit-scrollbar-thumb:hover {
      background: #f2355e; 
    }
    .popup-frame .left-side{
        margin: 0px
    }
    header .header-container .center .header-menu{
        display: none;
    }
    header .header-container .center{
        width: 100%;
        justify-content: flex-end;
        margin-right: 20px;
    }
    .block .top{
        height: 220px;
    }
    .block-wrap{
        display: flex;
        height: auto;
        justify-content: space-between;
    }
    .block-wrap .block{
        width: 48.5%;
    }
    .block-wrap .block{
        margin-bottom: 0px;
    }
    header .mob-icon{
        display: flex;
    }
    .news.list-page .header{
        position: relative;
        padding-top: 50px;
    }
    .news.list-page .header .title{
        display: inline-block;
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
    .news.list-page .header .dropdown-wrapper{
        display: flex;
        width: 49%;
    }
    .news.list-page .header .dropdown-wrapper .dropdown{
        width: 50%;
    }
    .about .top{
        flex-wrap: wrap;
        margin-bottom: 0px;
    }
    .about .top li{
        margin-right: 0px;
        width: 48.5%;
        margin-bottom: 20px;
    }
    .work .list-wrap .col-xl-8{
        padding: 0;
    }
    .main-slider .arr-wrap{
        margin-right: 80px;
    }
    .main-slider .slider .middle h2{
        padding-right: 0px;
    }
    .main-slider .slider .middle{
        width: 57%;
    }
    .services .popup .inner{
        width: 930px;
        height: 330px;
    }

}
@media only screen and (max-width: 991px) {
    .news .our-work .pub-wrap{
        height: auto;
    }
    .news .our-work .pub-wrap .pub-list li{
        margin-bottom: 20px;
    }
    .mediatek .col-xl-4 .title-wrapper{
        height: auto;
    }
    .mediatek{
        margin-bottom: 20px;
    }
    footer .logo{
        margin-bottom: 20px;
    }
    .contact-page:after{
        top: unset;
        bottom: 0;
    }
    .contact-page .google-map{
        margin-top: 40px;
    }
    .contact-page{
        padding: 40px 20px;
    }
    .terminology .list{
        column-count: 2;
    }
    .terminology .keyboard ul{
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .terminology .keyboard ul li{
        width: 35px;
    }
    .topic .header .topic-top{
        height: 250px;
    }
    .about .about-3 .list{
        grid-template-columns: auto;
    }
    .about{
        margin-top: 0px;
    }
    .work{
        margin-top: 0px;
    }
    .about .ab-leftside{
        margin-bottom: 20px;
    }
    .about .ab-rightside{
        margin-bottom: 30px;
    }
    .library-wrap.page .library .book .popup-wrap .popup .pop-image{
        height: 400px;
        width: 300px;
    }
    .library-wrap.page .library .book .popup-wrap .popup .pop-details .text{
        max-height: 272px;
    }
    .main-slider .right{
        top: auto;
        right: 0;
        transform: none;
        bottom: 20px;
    }
    .main-slider .slider .middle{
        width: 100%;
    }
    .main-slider .arr-wrap{
        margin-right: 50px;
    }
    .mediatek .col-xl-4 .title-wrapper{
        margin-top: 20px;
    }
    .main-slider .slider .middle{
        width: 60%;
    }
    .main-slider .slider .middle h2{
        padding-right: 20px;
    }
    .main-slider .right{
        height: calc(100% - 40px );
    }
    .main-slider .right .button-wrap{
        margin-right: 20px;
    }
    .services .popup .inner{
        width: 700px;
        height: auto;
        flex-wrap: wrap;
    }
    .services .popup .inner .left,
    .services .popup .inner .right{
        width: 100%;
    }
    .services .popup .inner .left{
        height: 350px;
        border-radius: 10px;
    }
    .services .popup .inner .left img{
        border-radius: 10px;
    }
    .services .popup .inner .right{
        padding: 20px;
        padding-top: 0px;
        max-height: 420px;
    }
}
@media only screen and (max-width: 767px) {
    .main-slider .right .button-wrap .wisgmap{
        display: none;
    }
    .news .block-wrap{
        flex-wrap: wrap;
    }
    .news .block-wrap .block{
        width: 100%;
    }
    .popup-frame .pop-up{
        height: 80vh;
        margin-top: 60px;
    }
    .news .block-wrap .block:first-child{
        margin-bottom: 20px;
    }
    .library-wrap .library{
        flex-wrap: wrap;
        padding-bottom: 10px;
    }
    .library-wrap .library .book{
        height: 355px;
        width: 48%;
        margin-bottom: 20px;
    }
    .library-wrap.page .library .book .image{
        width: 230px;
    }
    .library-wrap.page .library .book .details{
        width: 260px;
    }
    .library-wrap.page .library .book .details .text{
        height: auto;
    }
    .library-wrap.page .top .right{
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .library-wrap.page .top .right button{
        margin-right: 0;
    }
    .library-wrap.page .top .right div{
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }
    .news.list-page .header{
        padding-top: 50px;
        position: relative;
    }
    .news.list-page .header .dropdown-wrapper{
        display: inline-block;
        width: 48.5%;
    }
    .news.list-page .header .dropdown-wrapper .dropdown{
        width: 100%;
    }
    .topic .header .dropdown-container{
        flex-wrap: wrap;
    }
    .topic .header .dropdown-container .dropdown{
        width: 100%;
    }
    .topic .header .dropdown-container .dropdown-wrapper{
        margin-top: 20px;
        width: 100%;
    }
    .topic .header .dropdown-container .dropdown-wrapper .dropdown{
        width: 50%;
    }
/*    .about .main-img{
        height: 250px;
    }*/
    .work .list-wrap ul{
        flex-wrap: wrap;
    }
    .work .list-wrap ul li{
        width: 48.5%;
        margin: 0;
        margin-bottom: 20px;
    }
    .work .line{
        margin-top: 0px;
    }
    .library-wrap.page .library .book .popup-wrap .popup{
        flex-wrap: wrap;
    }
    .library-wrap.page .library .book .popup-wrap .popup .pop-image{
        height: 300px;
        width: 100%;
    }
    .main-slider .right{
        top: auto;
        transform: none;
        bottom: 20px;
        width: 100%;
        height: fit-content;
    }
    .main-slider .arr-wrap{
        margin-right: 50px;
        display: flex;
        flex-direction: row-reverse;
        position: absolute;
        left: 20px;
        top: -50px;
    }
    .main-slider .right .button-wrap{
        display: flex;
        justify-content: space-around;
        width: 100%;
        margin-right: 0px;
    }
    .main-slider .slider{
        align-items: flex-start;
    }
    .main-slider .slider .middle{
        margin-top: 50px;
    }
    .main-slider .arr-wrap span{
        margin-left: 20px;
    }
    .main-slider .owl-dots{
        display: none!important;
    }
    .news .our-work .title-wrapper{
        margin-top: 20px;
    }
    .main-slider .slider .middle ul{
        flex-wrap: wrap;
    }
    .main-slider .slider .middle ul li.date{
        width: 50%;
        display: block;
        margin-bottom: 20px;
        padding-top: 3px;
    }

    .main-slider .right .button-wrap a.servisesBtn img{
        margin-right: 10px;
    }
    .main-slider .right .button-wrap a.servisesBtn img:last-child{
        display: none;
    }
    .main-slider .right .button-wrap a.report-crime{
        background-image: none;
    }
    .main-slider .right .button-wrap a img:last-child{
        display: none;
    }
    .main-slider .right .button-wrap a{
        width: 160px;
        justify-content: center;
    }
    .main-slider .slider .middle h2{
        padding-right: 0px;
    }
    .main-slider .slider .middle{
        width: 100%;
    }
    .main-slider .arr-wrap span:last-child{
        margin-left: 0px;
    }
    footer .footer-background .arrow-top{
        right: -30px;
    }
    .main-page .block{
        height: auto;
    }
    .services .popup .inner{
        width: 90%;
    }
}
@media only screen and (max-width: 576px) {
    .projects .nav.nav-tabs{
        flex-direction: column;
    }
    .projects .nav.nav-tabs li{
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    section{
        min-height: auto;
    }
    .container{
        width: 97%!important;
    }
    .news .big-block .top ul{
        display: flow-root;
        height: auto;
    }
    footer ul{
        margin-bottom: 20px;
    }
    .terminology .list{
        column-count: 1;
    }
    .library-wrap.page .top{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .library-wrap.page .top .dropdown{
        margin-bottom: 15px;
    }
    .library-wrap.page .top .filter{
        margin-left: 0px;
        width: 100%;
        margin-right: 5px;
    }
    .library-wrap.page .top .filter input{
        width: 100%;
    }
    .library-wrap.page .library .book .image{
        width: 150px;
    }
    .library-wrap.page .library .book{
        justify-content: center;
    }
    .about .top li{
        width: 100%;
    }
    .library-wrap.page .library .book .popup-wrap .popup{
        padding: 0px 30px;
    }
    .library-wrap.page .library .book .popup-wrap .popup .pop-details .text{
        max-height: 143px;
    }
    .news .big-block .catt-title{
        right: auto;
        left: 20px;
        top: 70px;
    }
    .library-wrap .library{
        justify-content: center;
    }
    .library-wrap .library .book{
        margin-right: 1px;
        width: 50%;
    }
    footer .footer-background .arrow-top{
        right: 0px;
    }
    .news.list-page .header{
        flex-wrap: wrap;
    }
    .news.list-page .header .dropdown-wrapper{
        width: 100%;
        display: flex;
    }
    .news.list-page .header .dropdown-wrapper .dropdown{
        width: 49%;
    }
    .news.list-page .filter {
        margin-left: 0px;
        width: 100%;
    }
    .news.list-page .filter input{
        width: 100%;
    }
    .news-inside .block .top{
        height: 240px;
    }
    .news-inside .return-back{
        position: unset;
        margin-bottom: 20px;
        height: auto;
        overflow: auto;
    }
    .library-wrap.page{
        margin: 0px 0px 55px 0px;
    }
    .services .popup .inner .left{
        height: 250px;
    }
    .services .popup .inner .right .text p{
        text-align: justify;
    }
}
@media only screen and (max-width: 480px) {
    header .header-container .socials{
        display: none;
    }
    header .header-container .center{
        margin-right: 7px;
    }
    header .mob-icon{
        margin-left: 13px;
    }
    header .mob-menu .socials{
        display: block;
    }
    .library-wrap .library .book{
        height: 280px;
    }
    .news-inside .keyboard ul{
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
    .about .about-3 .list li a{
        flex-wrap: wrap;
        height: auto;
    }
    .about .about-3 .list li a .leftside{
        width: 100%;
        height: 140px;
    }
    .about .about-3 .list li a .rightside{
        padding: 10px;
    }
    .work .list-wrap ul li{
        width: 100%;
    }
    .main-slider .slider{
        height: 500px;
    }
    .main-slider{
        height: 500px;
    }
    .main-slider .right .button-wrap{
        display: flex;
        width: auto;
    }
    .main-slider .right{
        left: 0px;
        width: fit-content;
        bottom: 0px;
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .main-slider .arr-wrap{
        position: unset;
    }
    /* .main-slider .right .button-wrap{
        width: 90%;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
    } */
    .main-slider{
        height: 510px;
    }
    .main-slider .slider{
        height: 300px;
    }
    .main-slider .right{
        width: 100%;
        bottom: -20px;
    }
    /* .main-slider .right .button-wrap{
        display: block;
        width: 100%;
        text-align: -webkit-center;
    } */
    .news .big-block{
        height: 270px;
    }
    .news .big-block .bottom{
        max-height: 73px;
    }
    .news .big-block .background {
        height: 110px;
    }
    header .header-container .left a span{
        padding: 10px 0px;
        font-size: 12px;
        margin-left: 55px;
    }
    header .header-container .left img{
        height: 65px;
    }
    .main-slider .right .button-wrap a.les img{
        display: none;
    }
    .main-slider .right .button-wrap a.les img.mob{
        display: block;
    }
    .main-slider .right .button-wrap a.report-crime span{
        display: none;
    }
    .main-slider .right .button-wrap a.report-crime{
        background-repeat: no-repeat;
        background-image: url(../img/hand.png);
        background-position: center;
        background-size: auto;
    }
    .main-slider .right .button-wrap a.servisesBtn{
        margin-right: 0px;
    }
    .main-slider .right .button-wrap a.servisesBtn span{
        display: none;
    }
    .main-slider .right .button-wrap a.servisesBtn img{
        margin-right: 0px;
    }
    .main-slider .right .button-wrap a{
        width: 60px;
        margin-right: 20px;
    }
    .main-slider{
        height: 300px;
    }
}
@media only screen and (max-width: 450px) {
    .main-slider .arr-wrap{
        margin-right: 10px;
    }
    .main-slider .arr-wrap span{
        margin-left: 10px;
    }
    .main-slider .right .button-wrap a{
        width: 50px;
        height: 40px;
        margin-right: 10px;
    }
    .main-slider .right .button-wrap a img{
        height: 20px!important;
    }
    .main-slider .right .button-wrap a.report-crime{
        background-size: 20px 24px;
    }
    .main-slider .slider .middle h2{
        margin: 10px 0px;
    }
    .news .big-block{
        height: 180px;
    }
    .news .big-block .top{
        top: 10px;
        padding-top: 0px;
    }
    .news .big-block .bottom{
        max-height: 43px;
    }
    .news .big-block .catt-title{
        top: 50px;
    }
}
@media only screen and (max-width: 380px) {
    .news.list-page .header .dropdown-wrapper{
        width: 100%;
        flex-wrap: wrap;
    }
    .news.list-page .header .dropdown-wrapper .dropdown{
        width: 100%;
        margin-right: 0px;
    }
    .news.list-page .header{
        flex-wrap: wrap;
    }
    .news.list-page{
        margin-top: 15px;
    }
    .library-wrap.page .top .dropdown{
        width: 100%;
    }
    .library-wrap.page .library .book .popup-wrap .popup .pop-image{
        height: 200px;
    }
    .library-wrap.page .library .book .popup-wrap .popup .pop-details .text{
        height: 110px;
    }
    .library-wrap .library .book{
        margin-right: 0px;
        width: 80%;
    }
    .month:first-child{
        padding-left: 0px!important;
    }
    .month{
        font-size: 10px!important;
    }
    header .header-container .left img{
        height: 65px;
    }
    header .header-container .left a span{
        width: 115px;
        margin-left: 50px;
        font-size: 11px;
    }
    .library-wrap.page .top .filter{
        margin-right: 0px;
    }
    .topic .header .topic-top .center .aboutLibrary{
        padding: 20px 0px 17px 0px;
    }
}



/*calendar*/
.content {
    overflow: none;
    position: relative;
    border: 1px solid #e5e5e5;
}

/*  Events display */
.events-container {
    overflow-Y: auto;
    max-height: 200px;
}
.events-container:after{
    clear:both;
}
.event-card {
    width: 90.5%;
    margin: 20px 15px;
    display: block;
    background: #fff;
    border-radius: 3px;
       box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    -moz-box-shadow: 3px 8px 16px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    -webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.10);
}
.event-name{
    width: 100%;
}
.event-count, .event-name, .event-cancelled {
    display: inline;
    padding: 0 10px;
    font-size: 1rem;
}
.event-count {
    color: #52A0FD;
    text-align: right;
}
.event-name {
    padding-right: 0;
    text-align: left;
    height: 100%;
    padding: 10px 10px;
    display: inline-block;
}
.event-cancelled {
    color: #FF1744;
    text-align: right;
}

/*  Calendar wrapper */
.calendar-container:after{
    clear:both;
}
.calendar {
    display: table;
    background-color: white;
    height: 260px;
}

/* Calendar Header */
.year-header {
    text-align: center;
}
.year-header span {
    display:inline-block;
    font-size: 16px;
    line-height: 30px;
}
.year{
    padding-top: 1px;
}
.year-header .calendar-btn#prev{
    transform: rotate(-90deg);
}
.year-header .calendar-btn#next{
    transform: rotate(-90deg);
}
.left-button, .right-button {
    cursor: pointer;
    width:28px;
    text-align:center;
    position:absolute;
}
.left-button {
    left:0;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
}
.right-button {
    right:0;
    top:0;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
}

/* Buttons */
.button{
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    font-size: 1rem;
    border-radius: 25px;
    padding: 0.65rem 1.9rem;
    transition: .2s ease all;
    color: white;
    border: none;
    box-shadow: -1px 10px 20px #9BC6FD;
    background: #52A0FD;
    background: -moz-linear-gradient(left,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
    background: -webkit-linear-gradient(left,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
    background: linear-gradient(to right,  #52A0FD 0%, #00C9FB 80%, #00C9FB 100%);
}
#cancel-button {
    box-shadow: -1px 10px 20px #FF7DAE;
    background: #FF1744;
    background: -moz-linear-gradient(left,  #FF1744 0%, #FF5D95 80%, #FF5D95 100%);
    background: -webkit-linear-gradient(left,  #FF1744 0%, #FF5D95 80%, #FF5D95 100%);
    background: linear-gradient(to right,  #FF1744 0%, #FF5D95 80%, #FF5D95 100%);
}
#add-button {
    display: block;
    position: absolute;
    right:20px;
    bottom: 20px;
}
#add-button:hover, #ok-button:hover, #cancel-button:hover {
    transform: scale(1.03);
}
#add-button:active, #ok-button:active, #cancel-button:active {
    transform: translateY(3px) scale(.97);
}

/* Days/months tables */
.days-table, .dates-table, .months-table {
    text-align: center;
}
.day {
    height: 20px;
    width: 30px;
    padding: 0 15.3px;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 90%;
    color: #9e9e9e;
    font-size: 9px;
}
.month {
    cursor: default;
    height: 26px;
    text-transform:uppercase;
    font-size: 11px;
    color:#9e9e9e;
    padding: 0px 3px;
}
.month:first-child{
    padding-left: 13px;
}
.active-month {
    font-weight: bold;
    color: #f2355e;
}
.month:hover {
    color: #f2355e;
}

/*  Dates table */
.table-date {
    cursor: default;
    color:#2b2b2b;
    height:26px;
    width: 52px;
    font-size: 14px;
    padding: 1px 10px;
    line-height:26px;
    text-align:center;
    border: 2px solid transparent;
    transition: all 250ms;
}
.table-date:not(.nil):hover {
    /*border-color: #FF1744;
    box-shadow: 0 2px 6px RGBA(255, 50, 120, .9);*/
    color: white;
    background-color: #f2355e;
}
.event-date {
/*    border-color:#52A0FD;
    box-shadow: 0 2px 8px RGBA(130, 180, 255, .9);*/
    color: #f2355e;
    font-weight: bold;
}
.active-date{
    background: #f2355e;
    color: #fff;
}
.event-date.active-date {
    background: #f2355e;
}

/* input dialog */
.dialog{
    z-index: 5;
    background: #fff;
    position:absolute;
    width:415px;
    height: 500px;
    left:387px;
    border-top-right-radius:3px;
    border-bottom-right-radius: 3px;
    display:none;
    border-left: 1px #aaa solid;
}
.dialog-header {
    margin: 20px;
    color:#333;
    text-align: center;
}
.form-container {
    margin-top:25%;
}
.form-label {
    color:#333;
}
.input {
    border:none;
    background: none;
    border-bottom: 1px #aaa solid;
    display:block;
    margin-bottom:50px;
    width: 200px;
    height: 20px;
    text-align: center;
    transition: border-color 250ms;
}
.input:focus {
    outline:none;
    border-color: #00C9FB;
}
.error-input {
    border-color: #FF1744;
}
.search-routes{
    font-weight: bold;
    display: block;
    margin-bottom: -5px;
    margin-top: 0px;
    font-size: 12px;
    font-family: light;
    font-style: italic;
    color: #0056b3;
}
@media only screen and (max-width: 1200px) {
    .month{
        padding: 0px 2.5px;
        font-size: 9px;
    }
    .day{
        width: 30px;
        padding: 0 10.9px;
    }
    .table-date{
        width: 43px;
    }
    header .search-form .close-btn{
        transform: scale(1);
    }
    header .search-form form{
        width: 50%;
    }

}
@media only screen and (max-width: 991px) {
    .calendar{
        width: 100%;
    }
    .month {
        padding: 0px 3.5px;
        font-size: 10px;
    }
    .table-date {
        width: 50px;
    }
    .day {
        width: 30px;
        padding: 0 14.4px;
    }
}
@media only screen and (max-width: 767px) {
    .table-date{
        width: 80px;
    }
    .month{
        padding: 0px 9.5px;
        font-size: 12px;
    }
    .day{
        width: 30px;
        padding: 0 27.8px;
    }
    header .search-form form{
        width: 74%;
    }
}
@media only screen and (max-width: 576px) {
    .month{
        width: 7%;
        padding: 0px;
    }
    .day{
        width: 4%;
        padding: 0;
    }
    .table-date{
        width: 3%;
        padding: 0;
    }
    body{
        overflow-x: hidden;
    }
}
@media only screen and (max-width: 1200px) {
    .news-inside.library-wrap.page .block .top{
        width: 100%;
        height: 800px;
    }
}
@media only screen and (max-width: 580px) {
    .news-inside.library-wrap.page .block .top{
        width: 100%;
        height: 700px;
    }
}
@media only screen and (max-width: 480px) {
    .news-inside.library-wrap.page .block .top{
        width: 100%;
        height: 500px;
    }
}














