/*General Screens*/

.orders-1{
    order: 1;
}
.orders-2{
    order: 2;
}
.orders-3{
    order: 3;
}

/*Mobile Menu*/
header .primary-menu label {
    display: none;
}
/*Mobile Menu*/

/*Header - Nav*/
header{
    padding: 20px 0 20px 0;
}
header .logo img{
    height: 80px;
}
header nav.sub-menu{
    margin-bottom: 20px;
    padding-right: 0;
}
header nav.sub-menu ul{
    display: flex;
    padding: 0;
    margin-bottom: -30px;
    flex-direction: row;
    justify-content: flex-end;
}
header nav.sub-menu ul li{
    list-style: none;
    transition: .3s ease-out;
}
header nav.sub-menu ul li:last-child {
    margin-left: 0.5rem;
}
header nav.sub-menu ul li:first-child::after {
    content: "|";
    margin: 0 0.4rem;
    color: var(--dark-gray);
    font-size: 1rem;
}
header nav.sub-menu ul li a{
    color: var(--dark-gray);
    font-size: 0.8rem;
}
header nav.sub-menu ul li a.btn-language{
    border-radius: var(--border-radius);
    border: 2px solid var(--dark-gray);
    background-image: url('../img/icon-language.svg');
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 1.1rem;
    padding: 8px 16px 8px 45px;
    text-align: center;
    margin-left: 10px;
}
header nav.sub-menu ul li:last-child:hover{
    transform: scale(1.02);
}

header .primary-menu-block{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

header .primary-menu-block .primary-menu nav{
    padding: 6px 30px 8px 30px;
    background-color: var(--theme-bg-color-third);
    border-radius: var(--border-radius);
}

header .primary-menu nav .main-menu{
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
header .primary-menu nav .main-menu li{
    list-style: none;
}
header .primary-menu nav .main-menu li a{
    font-size: 1rem;
    padding: 2px 6px 2px 6px;
    font-weight: bold;
    color: var(--white);
    border-radius: var(--border-radius);
}
header .primary-menu nav .main-menu li a.active{
    background-color: #2d5f93;
}
header .primary-menu nav .main-menu li a:hover{
    background-color: #2d5f93;
}

header .container.scrolled {
    padding-top: 12px;
}
header .container.scrolled .row {
    -webkit-box-shadow: 0 2px 50px 10px rgb(0 0 0 / .1);
    box-shadow: 0 2px 50px 10px rgb(0 0 0 / .1);
}

.donate-block {
    margin-bottom: unset;
}
.donate-block .btn-donate{
    position: relative;
    overflow: hidden;
}
.donate-block a.btn-donate{
    width: 90%;
}
.donate-block .btn-donate span {
    position: absolute;
    left: 0;
    width: 100%;
}
/*.donate-block .btn-donate span:first-child {
    animation: first-text-animation 12s ease-in-out infinite;
}
.donate-block .btn-donate span:last-child {
    animation: second-text-animation 12s ease-in-out infinite;
}*/
.donate-block p{
    display: none;
    font-size: 1rem;
    color: var(--theme-bg-color-third);
    font-weight: bold;
    margin: -2px 0 0 0;
    width: 130px;
    line-height: 1rem;
    text-align: right;
}
/*Header - Nav*/

/*Slider - Hero*/
.hero-home{
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 0;
    top: 0;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0px 3px 18px -7px rgba(3,51,156,1);
    -moz-box-shadow: 0px 3px 18px -7px rgba(3,51,156,1);
    box-shadow: 0px 3px 18px -7px rgba(3,51,156,1);
    background-color: #223b74;
    background: linear-gradient(135deg, #223b74 60%, #03339c 100%);
}
.hero-home .slider{
    text-shadow: 1px 1px 0 rgb(0 0 0 / 20%);
    overflow: hidden;
}
.hero-home .slider .tiny-slider .item .slider-image{
    border-radius: var(--border-radius);
}

.hero-home .slider .slider-type-1{
    display: flex;
    width: 100%;
    max-height: calc(100svh - 220px);
    overflow: hidden;
    border-radius: var(--border-radius);
}
.hero-home .slider .slider-type-1 img{
    width: 100%;
}
.hero-home .slider .slider-type-2{
    display: flex;
    padding: 30px;
}
.hero-home .slider .slider-type-2 .left{
    display: flex;
    flex-direction: column;
    width: 90%;
    padding-right: 30px;
    gap: 1rem;
    margin-bottom: 0;
    flex-basis: 60%;
}
.hero-home .slider .slider-type-2 .left .headline{
    margin-bottom: 0;
    color: var(--yellow);
    font-size: 2rem;
    letter-spacing: -2px;
    font-weight: bolder;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 40px;
}
.hero-home .slider .slider-type-2 .left .description{
    color: var(--white);
    font-size: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-home .slider .slider-type-2 .left .slider-button .btn-blue{
    width: 30%;
}
.hero-home .slider .slider-type-2 .right{
    width: 100%;
    margin-bottom: 60px;
    flex-basis: 60%;
}
.hero-home .slider .slider-type-2 .right img{
    border: 4px solid rgba(3, 51, 156, 0.7);
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
}

.hero-home .slider .tiny-slider.tns-horizontal.tns-subpixel>.tns-item{
    display: inline-flex !important;
    width: 100%;
    align-items: center;
    flex-direction: row;
}
.hero-home .slider .tiny-slider.tns-horizontal.tns-subpixel>.tns-item.slider-type-1{
    justify-content: center;
}
.tns-nav{
    margin-top: -24px;
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: max-content;
}
.tns-nav button{
    border-radius: 30px;
    width: 50px;
    height: 12px;
    margin: 5px 6px;
    border: solid 1px var(--gray);
    background-color: transparent;
    transition: all .3s ease;
}
.tns-nav button:hover{
    border: solid 1px var(--gray);
    background-color: var(--gray);
}
.tns-nav button.tns-nav-active{
    border: solid 1px var(--gray);
    background-color: var(--gray);
}
/*Slider - Hero*/

/*Map App*/
section.map-app h1{
    font-size: 0.9rem;
    font-weight: bold;
    padding: 8px 16px 6px 16px;
    border-radius: 20px;
    background-color: var(--theme-bg-color-third);
    color: var(--yellow);
    width: 200px;
    height: 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-block;
}
section.map-app h1 span {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
}
section.map-app h1 span:first-child {
    animation: first-text-animation 8s ease-in-out infinite;
}
section.map-app h1 span:last-child {
    animation: second-text-animation 8s ease-in-out infinite;
}

section.map-app .map-button-list{
    width: fit-content;
    border: solid 2px var(--theme-bg-color-third);
    padding: 3px 4px 3px 3px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}
section.map-app .map-button-list a{
    background-color: var(--dirty-white);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    padding: 0 8px 0 8px;
    color: var(--gray);
    font-size: 0.9rem;
}
section.map-app .map-button-list a:hover{
    background-color: transparent;
    border: 2px solid var(--dirty-white);
    color: var(--gray);
}
section.map-app .map-button-list a.active{
    background-color: var(--theme-bg-color-third);
    color: var(--white);
    font-weight: bold;
}
section.map-app .map-button-list a.active:hover{
    border: 2px solid transparent;
}
section.map-app .map-container{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-direction: row;
}
section.map-app .map-block{
    width: 70%;
    min-height: 600px; /*Silinecek*/
    background-color: var(--solid-gray);
    border-radius: var(--border-radius);
}
section.map-app .map-content-block{
    display: block;
    width: 30%;
    padding: 25px 18px 18px 22px;
    background-color: var(--solid-gray);
    border-radius: var(--border-radius);
    height: 600px;
    overflow-y: auto;
}

/*Map App*/

/*News Block*/
section.news-list{
    margin-top: 30px;
    margin-bottom: 30px;
}
section.news-list .container-fluid{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: space-between;
}
section.news-list h2{
    font-size: 1.8rem;
    font-weight: bold;
}
section.news-list .all-link{
    font-size: 1rem;
}
section.news-list .news-block{
    display: flex;
    margin-top: 10px;
    gap: 20px;
    align-items: stretch;
}
section.news-list .news-block .news-item{
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    background-color: var(--solid-gray);
    padding: 18px;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
section.news-list .news-block .news-item .news-title{
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px 0 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.7rem;
    text-transform: uppercase;
}
section.news-list .news-block .news-item .news-title a:hover{
    text-decoration: underline;
}
section.news-list .news-block .news-item img{
    border-radius: var(--border-radius);
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}
section.news-list .news-block .news-item .zoom-img {
    border-radius: var(--border-radius);
}
section.news-list .news-block .news-item:hover .zoom-img img {
    transform: scale(1.05);
}
section.news-list .news-block .news-item p{
    font-size: 1rem;
    margin: 20px 0 40px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 1.6em;
    height: 97px;
}
section.news-list .news-block .news-item .btn-blue{
    font-size: 0.8rem;
    padding: 5px;
}
section.news-list .tns-nav{
    margin-top: 20px;
    position: relative;
}
section.news-list #tns2-iw{
    margin: 0;
}


.hero-home .slider .tns-nav{
    margin-top: -24px;
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: max-content;
}
.hero-home .slider .tns-nav button{
    border-radius: 30px;
    width: 50px;
    height: 12px;
    margin: 5px 6px;
    border: solid 1px var(--gray);
    background-color: transparent;
    transition: all .3s ease;
}
.hero-home .slider .tns-nav button:hover{
    border: solid 1px var(--gray);
    background-color: var(--gray);
}
.hero-home .slider .tns-nav button.tns-nav-active{
    border: solid 1px var(--gray);
    background-color: var(--gray);
}
/*News Block*/

/*Main Report*/
section.main-report{
    background-color: var(--theme-bg-color-third);
    /*height: 70vh;
    min-height: 480px;*/
    height: 90vh;
}
section.main-report .container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
section.main-report .frame{
    display: flex;
    flex: 1 1 calc(25% - 12px);
    flex-direction: column;
    /*height: 70vh;
    min-height: 480px;*/
    height: 90vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    color: var(--white);
    padding: 30px;
    justify-content: center;
}
section.main-report .frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-bg-color-third);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
section.main-report .frame:hover::before {
    opacity: 1;
}
section.main-report .frame p, section.main-report .frame h4{
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    line-height: 1.1;
}
section.main-report .frame:hover p, section.main-report .frame:hover h4{
    color: white;
}
section.main-report .frame h4{
    font-size: 4rem;
    text-transform: uppercase;
}
section.main-report .frame p:first-of-type{
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
section.main-report .frame p:last-child{
    font-size: 1rem;
}
/*Main Report*/

/*Main Partners*/
.home-animate .sponsor{
    width: 120px;
}
/*Main Partners*/

/*Footer*/
footer .logo-group{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}
footer .footer-sub-group{
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 0 0;
    flex-direction: row;
}
footer .logo-group .logo{
    width: 120px;
}
footer .logo-group p{
    width: 60%;
    font-size: 1rem;
    /*padding: 30px 0 0 20px;*/
    color: var(--gray);
    padding: 0 0 0 20px;
    line-height: 1.4rem;
    margin: 0;
}
footer .contact-group{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    font-size: 1rem;
}
footer .contact-group p{
    color: var(--gray);
    text-align: right;
    font-size: 0.9rem;
}
footer .contact-group a{
    font-weight: bold;
}

footer .footer-menu{
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 40px;
}
footer .footer-menu li{
    font-size: 1rem;
    font-weight: bold;
    list-style: none;
}
footer .copyright{
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 1rem;
    padding-top: 20px;
    flex-direction: row;
}
footer .copyright address{
    font-size: 0.8rem;
}
footer .copyright .privacy-policy-menu{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
footer .copyright .privacy-policy-menu li{
    list-style: none;
}
footer .copyright .privacy-policy-menu a{
    color: var(--gray);
    font-size: 0.8rem;
}
/*Footer*/
/*General Screens*/

/*Pages*/
.pages .breadcrumb{
    overflow-x: unset;
}
.pages .breadcrumb-block{
    width: 100%;
}
.text-content .col-8 {
    width: 66.66666667%;
}
.pages h1 {
    font-size: 2rem;
}
.partners-page .image-group .image-item{
    padding: 40px;
}
/*Pages*/


/*Plugins*/
section.donate-report .cards .card-item .heading{
    flex-direction: row;
}
section.donate-report .cards .card-item .amount-group .amount{
    font-size: 2.4rem;
}
/*Plugins*/


