


*{
    padding: 0;
    margin: 0;
}
section{
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Inter', sans-serif;


}
.headeralani{
background-color: var(--bg-header);
}


.yaniletisim{
float: left;



}
.yaniletisim ul li{
    padding: 20px;
    border-left: 1px solid rgba(101, 91, 91, 0.4);
    float: left;
    display: block;

}
.yaniletisim ul li:last-child{
    border-right: 1px solid rgba(101, 91, 91, 0.4);
}



.yaniletisim ul li a{
    color: whitesmoke;
    text-decoration: none;
    font-size: 16px;

}


.yaniletisim i{
    border-radius: 100%;
    color: white;
}
.sosyalmedya{
    float: right;
}
.sosyalmedya ul li{
    padding: 20px 10px;
    float: left;
    display: block;

}
.sosyalmedya i{
    font-size: 20px;
    color: #ffffff;
}

.sosyalmedya i:hover {

    color: #eada99;
}

/*Menüler*/


ul{
    list-style: none;
    margin:0;
    padding:0;
}
a{
    text-decoration: none;
}
/*header*/
.header{
    position: relative;
    background-color: var(--bg-arkaplanmenu);

}
.header-main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}
.header .logo{
    padding: 0 15px;
}
.header .logo a{
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
}
.header .nav-menu{
    padding: 0 15px;
}
.header .menu > .menu-item{
    display: inline-block;
    padding: 30px 15px;
    position: relative;
    z-index: 100000;
}
.header .menu > .menu-item:hover{
}



.header .menu > .menu-item > a{
    display: block;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-color-menu);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;

}
.header .menu > .menu-item > a .plus{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left:1px;
    pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
    content:'';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top:50%;
    background-color: rgba(0, 0, 0, 0.76);
    height: 2px;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
    background-color: #034ad2;
}
.header .menu > .menu-item > a .plus:after{
    transform: translate(-50%,-50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    color: #0066ff;
}
.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left:0;
    top:100%;
    background-color: #ffffff;
    padding: 10px 0;
    border-top: 3px solid #0049ff;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity:0;
    visibility: hidden;
}
@media(min-width: 992px){
    .header .menu > .menu-item-has-children:hover > .sub-menu{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .header .menu > .menu-item-has-children:hover > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
    }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
    display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.header .open-nav-menu{
    height: 34px;
    width: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}
.header .open-nav-menu span:before{
    top:-7px;
}
.header .open-nav-menu span:after{
    top:7px;
}
.header .close-nav-menu{
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin:0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}
.header .close-nav-menu img{
    width: 16px;
}
.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity:0;
    transition: all 0.3s ease;
}

/*home section*/
.home-section{
    width: 100%;
    display: block;
    min-height: 100vh;
    background-image: url('../img/home.jpg');
    background-position: center top;
    background-size: cover;
}


/* responsive */

@media(max-width: 991px){
    .header .menu-overlay.active{
        visibility: visible;
        opacity: 1;
    }
    .header .nav-menu{
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top:0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }
    .header .nav-menu.open{
        visibility: visible;
        right: 0px;
    }
    .header .menu > .menu-item{
        display: block;
        margin:0;
    }
    .header .menu > .menu-item-has-children > a{
       
    }
    .header .menu > .menu-item > a{
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }
    .header .menu > .menu-item:first-child > a{
        border-top: 1px solid #333333;
    }
    .header .menu > .menu-item > a .plus:before,
    .header .menu > .menu-item > a .plus:after{
        background-color: #ffffff;
    }
    .header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu{
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border:none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top:auto;
        max-height: 0;
        overflow: hidden;
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a{
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }
    .header .close-nav-menu,
    .header .open-nav-menu{
        display: flex;
    }
}



/*Slider*/


.slider {
    position: relative;
    width: 100%;
    font: 19px sans-serif;
    overflow: hidden;
}
.slider .slayt img{
    width: 100%;
    height: 450px;
}


.controlsol{
    position: absolute;
    bottom: 50%;
    left: 10px;
}
.controlsag{
    position: absolute;
    bottom: 50%;
    right: 10px;

}


.control a {
    color: #ffffff;
    background: #00000080;
    padding: 10px;
    text-decoration: none;
    font-size: 30px;
    border-radius: 5px;
}


.grid {
    position: relative;
    margin: 0 auto;
    padding: 1em 0 4em;
    width: 100%;
    list-style: none;
    text-align: center;
    height: 400px;
}

/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;

    background: #3085a3;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}

/* Individual effects */

/*---------------*/
/***** Ruby *****/
/*---------------*/

figure.effect-ruby {
    background-color: rgba(23, 129, 156, 0.5);
}

figure.effect-ruby img {
    opacity: 0.7;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

figure.effect-ruby:hover img {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.effect-ruby h2 {
    margin-top: 20%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
}

figure.effect-ruby p {
    margin: 1em 0 0;
    padding: 1em;
    border: 1px solid #fff;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,20px,0) scale(1.1);
    transform: translate3d(0,20px,0) scale(1.1);
}

figure.effect-ruby:hover h2 {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

figure.effect-ruby:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1);
    transform: translate3d(0,0,0) scale(1);
}
.kutular{
}

.kutular .kutu{
    border-radius: 10px 10px 20px 20px;
    border: 1px solid rgba(14, 26, 30, 0.25);

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: var(--bg-kutuicrenk);

}

.kutular .kutu:hover{
    background: #FFE9D4;
    border-top: 5px solid rgba(0, 102, 255, 0.46);
    border-bottom: 1px solid #eaeaea ;
    border-left: 1px solid #eaeaea ;
    border-right: 1px solid #eaeaea ;
}
.kutular .kutu .icondiv{
    width: 70px;
    height: 70px;
    margin:0 auto;
    border: 5px solid var(--bg-border);
    border-radius: 100px;
    background-color: var(--bg-kutuar);
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    vertical-align: center;
    align-items: center;
    justify-content:center;

}
.kutular .kutu .icondiv i{
    font-size: 35px;
    color: white;



}
.kutular h4{
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.kutular h4 a{
    color: var(--bg-baslikrenk);
}

.kutular h4 a:hover{
    color: #ffb700;
}

.kutular p a{
    padding: 5px 12px;
    background-color: var(--bg-baslikrenk);
    border-radius: 10px;
    color: whitesmoke;
}

.kutular p a:hover{
    padding: 5px 12px;
    background-color: #ffc60a;
    border-radius: 20px;
    color: whitesmoke;
}

/*Sayaç Alanı*/
.sayac{
    background-color: var(--bg-footer);

}

.sayac .counter-up .content{
    width: 100%;


}
.sayac .counter-up .sayac-kutu{
    margin: 40px 0;
    padding: 20px;
    border-radius: 10px 10px 10px 10px;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;

}

.sayac .counter-up .sayac-kutu .icon{
    text-align: center;
}

.sayac .counter-up .sayac-kutu .icon i{
    color: white;
    font-size: 40px;
}

.sayac .counter-up .sayac-kutu .counter{
    color: white;
    font-size: 40px;
    text-align: center;
}

.sayac .counter-up .sayac-kutu h3{
    color: white;
    font-size: 30px;
    text-align: center;
}

/*Yorum Alanı*/

.slide-container{
    max-width: 1220px;
    width: 100%;
    padding: 60px 0;
}
.slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 10px;
}
.card{
    border-radius: 15px;
    background-color: #ffffff;
}
.image-content,
.card-content{

}
.image-content{
    position: relative;
    row-gap: 5px;
    padding: 50px 30px;
}
.image-content .isimalan{
    margin: 30px 0;
}
.overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 25px 25px 0 25px;
}

.card-image{

}
.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070F4;
}
.name{
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
.description{
    font-size: 14px;
    color: #707070;
    text-align: center;
}
.button{
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: purple;
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover{
    background: #265DF2;
}

.swiper-navBtn{
    color: #6E93f7;
    transition: color 0.3s ease;
}
.swiper-navBtn:hover{
    color: #0044ff;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
    font-size: 35px;


}
.swiper-button-next{
    right: 0;
}
.swiper-button-prev{
    left: 0;
}
.swiper-pagination-bullet{
    background-color: #6E93f7;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background-color: #4070F4;
}

@media screen and (max-width: 768px) {
    .slide-content{
        margin: 0 10px;
    }
    .swiper-navBtn{
        display: none;
    }
}

#footer{
    background-color: var(--bg-footer);
    height: auto;
    padding-top: 50px;
    border-top: 10px solid var(--bg-footer);
}
#footer h3{
    width: 70%;
    color: white;
    font-weight: bold;
    margin-top: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    border-bottom: 1px solid rgba(248, 248, 255, 0.23);

}

#footer ul{
    margin-top: 20px;


}
#footer ul li{
    list-style: none;
    line-height: 30px;

}
#footer ul li a{
    color: white;
    text-decoration: none;

}
#footer ul li a:hover{
    color: #bac0d9;

}
.hizliiletisim{
    padding: 50px 0;
}
.hizliiletisim h3{
    color: white;
    text-align: center;
}
.hizliiletisim a{
    color: white;
    text-decoration: none;

}

/*sss alanı için*/

[data-ripple] {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 9999px;
    animation: ripple-animation 2s;
}

@keyframes ripple-animation {
    from {
        transform: scale(1);
        opacity: 0.4;
    }
    to {
        transform: scale(100);
        opacity: 0;
    }
}
.aks-accordion {
    width: 90%;
    margin: 0 auto;
}
.aks-accordion-row {
}
.aks-accordion-item {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    padding-top: 20px;
    padding-right: 5px;
    padding-bottom: 12px;
    padding-left: 5px;
    cursor: pointer;
}
.aks-accordion-item-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.aks-accordion-item-icon {
    width: 25px;
    height: 25px;
    background: var(--bg-iletisim);
    border-radius: 9999px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    text-align: center;
}
.aks-accordion-item-icon svg {
    width: 15px;
    fill: white;
    margin: 0 auto;
}
.aks-accordion-item-title {
    width: 90%;
    text-align: left;
    line-height: 1.5;
    display: flex;
    align-items: center;
    font-family: "Roboto";
}
.aks-accordion-item-title h4 {
    margin: 0;
}
.aks-accordion-item-content {
    display: none;
    width: 100%;
    padding-top: 15px;
    padding-right: 8px;
    padding-bottom: 0;
    padding-left: 42px;
    overflow: hidden;
    word-break: break-word;
    text-align: left;
    line-height: 1.5;
    background-color: var(--bg-arkaplanmenu);
}

.aks-accordion-item.opened .aks-accordion-item-icon-open {
    display: none;
}
.aks-accordion-item-icon-close {
    display: none;
}
.aks-accordion-item.opened .aks-accordion-item-icon-close {
    display: block;
}

@media screen and (max-width: 500px) {
    .aks-accordion {
        width: 100%;
    }
    .aks-accordion-item-content {
        padding-left: 11px;
        width: 92%;
    }
}


.iletisimyazirenk{
   color: var(--bg-iletisim-baslik);

}

.yazitiproboto{
    font-family: "Roboto";
}




.sosyalmedyafooter a{
    font-size: 20px;
    color: white;
    padding: 10px 10px;

}

.sosyalmedyafooter a:hover{
    font-size: 20px;
    color: #dbdcaa;
    padding: 10px 10px;

}

.btn-iletisim1{
    background-color: #d5cc29;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-iletisim1:hover{
    background-color: #29d574;

}


.btn-iletisim2{
    background-color: #d5cc29;
    padding: 10px 20px;
    border-radius: 5px;

}

.btn-iletisim2:hover{
    background-color: #29d574;


}


/*ABOUT HAKKIMIZDA*/
/* slider */
.single-slider {


}

.slider-height {

    min-height: 300px;
}

.slider-content h1 {
    font-size: 60px;
}

.slider-content h1 span {
    font-size: 60px;
}

.slider-content p {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin-top: 18px;
    margin-bottom: 38px;
}

.slider-content-2 h1 {
    font-size: 72px;
    line-height: 85px;
}

.slider-active .slick-arrow:hover {
    color: #FDC800;
}

.slider-active .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.slider-active .slick-dots li {
    display: inline-block;
    margin-right: 10px;
}

.slider-active .slick-dots li:last-child {
    margin-right: 0;
}

.slider-active .slick-dots li button {
    background: #fff;
    border: 0;
    text-indent: -99999999999px;
    padding: 0;
    width: 20px;
    height: 5px;
    border-radius: 3px;
}

.slider-active .slick-dots li.slick-active button {
    width: 40px;
}

.slider-active-2 .slick-dots li.slick-active button {
    border: 1px solid #FDC800;
}

.slider-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: 0;
    border: 0;
    text-transform: uppercase;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.slider-area:hover .slider-active .slick-arrow {
    opacity: 1;
    visibility: visible;
}
.slider-active .slick-arrow:hover::before {
    width: 30px;
}

.slider-active .slick-next {
    right: 40px;
}

.slider-active .slick-prev {
    z-index: 1;
    left: 40px;
}

.slider-active .slick-next::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    right: -40px;
    top: 13px;
    transition: .3s;
}

.slider-active .slick-next::before:hover {
    color: red;
}


.slider-active .slick-prev::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    left: -40px;
    top: 13px;
    transition: .3s;
}

.slider-active-2 .slick-prev::before {
    display: none;
}

.slider-active-2 .slick-next::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #fff;
    right: 0;
    top: 22px;
    left: -4px;
}

.slider-active-2 .slick-dots li button {
    background: 0;
    border: 1px solid #fff;
}

.slider-social-icons-heading span {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.slider-social-icons {
    position: relative;
    top: 190px;
}

.slider-social-icons::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 40px;
    height: 1px;
    left: -20px;
    right: 0px;
    margin: auto;
    top: 50%;
}

.slider-social-icons-list ul {
    margin-left: 75px;
}

.slider-social-icons-list ul li {
    display: inline-block;
}

.slider-social-icons-list ul li a {
    font-size: 14px;
    color: #fff;
    margin-right: 20px;
}

.slider-active-3 .slick-dots {
    position: absolute;
    bottom: 30px;
    right: 375px;
    text-align: right;
}

.slider-social-icons-list ul li a:hover {
    color: #FDC800;
}

.slider-active-3 .slick-dots li button {
    border: 0;
    text-indent: 0;
    padding: 0;
    width: 20px;
    height: 0;
    border-radius: 3px;
    clear: both;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.slider-active-3 .slick-dots li.slick-active button {
    width: 40px;
    text-indent: -9999999999999999px;
    background-color: #fff;
    height: 2px;
    vertical-align: middle;
}

.yellow-bg-btn {
    border-radius: 30px;
    padding: 19px 45px;
    transition: .4s;
}

.yellow-bg-btn:hover {
    background-color: #fff;
}

.blue-bg-btn-hover:hover {
    background-color: #002147;
    color: #fff;
}

.slider-active-3 .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: 0;
    border: 0;
    padding: 0;
    font-size: 36px;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
}

.slider-area:hover .slider-active-3 .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slider-active-3 .slick-prev.slick-arrow:hover,
.slider-active-3 .slick-next.slick-arrow:hover {
    color: #fdc800;
}


.slider-active-3 .slick-next.slick-arrow {
    right: 53px;
    color: #fff;

}

.slider-active-3 .slick-prev.slick-arrow {
    z-index: 1;
    color: #fff;
    left: 53px;
}

.slider-active-3 .slick-dots li {
    display: inline-block;
}

/* about */
.about-title-section h1 {
    font-size: 36px;
    color: #002147;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 23px;
}

.about-title-section p {
    font-size: 14px;
    color: #8a8a8a;
    line-height: 30px;
    padding-right: 82px;
}

.about-content button {
    margin-top: 25px;
}

.about-right-img {
    text-align: right;
}

.about-img img {
    width: 100%;
}

.about-title-section-2 h1 {
    font-size: 30px;
    margin-bottom: 16px;
}

.about-title-section-2 p {
    padding-right: 0;

}

.about-content-2 p {
    padding-right: 84px;
}

.university-banner img {
    width: 100%;
}

.feature-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    border-left: 5px solid #fdc800;
    padding-right: 23px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 30px 0px rgba(115, 115, 115, 0.1);
    /* width: 323px; */
    margin-right: 25px;
}

.feature-title-heading h3 {
    font-size: 20px;
    color: #002147;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.feature-title-heading {
    position: relative;
}

.feature-title-heading span {
    position: absolute;
    top: -4px;
    right: 0;
    font-size: 30px;
    color: #8a8a8a;
    opacity: 0.25;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    line-height: 30px;
}

.feature-text p {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 0;
    line-height: 30px;
    margin-top: 16px;
}
.slider-content-breadcrumb h1 {
    font-size: 50px;
}
.white-color {
    color: #fff;
}

.slider-content nav ol li.breadcrumb-item a {
    color: #fdc800;
}
.slider-content nav ol li {
    font-size: 24px;
    color: #fdc800;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}
.slider-content nav ol .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0;
    padding-left: 0;
    color: #6c757d;
    content: "";
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 14px;
    margin-top: 13px;
}

.slider-content nav ol li.breadcrumb-item.active {
    color: #fff;
}



/*=======[ Blog Signle ]========*/


.blog_wrapper {
    padding: 60px 0;
    /*=======[ Blog Post Style ]========*/
    /*=======[ widget Blog and Post Page ]========*/ }
.blog_wrapper .single_blog {
    margin-bottom: 60px;
    -webkit-box-shadow: 0px 0px 81px 0px rgba(47, 47, 47, 0.1);
    box-shadow: 0px 0px 81px 0px rgba(47, 47, 47, 0.1); }
.blog_wrapper .single_blog:last-child {
    margin-bottom: 0; }
.blog_wrapper .single_blog:hover {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .single_blog:hover .blog_banner img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
.blog_wrapper .single_blog:hover .post_content_wrapper h3 a {
    color: #ff5a2c; }
.blog_wrapper .single_blog .blog_banner {
    overflow: hidden; }
.blog_wrapper .single_blog .blog_banner img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .single_blog .post_content_wrapper {
    padding: 40px; }
.blog_wrapper .single_blog .post_content_wrapper .post_date p {
    color: #6a7a83;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    margin: 0 0 15px;
    line-height: 15px; }
.blog_wrapper .single_blog .post_content_wrapper .post_date p span {
    color: #333146; }
.blog_wrapper .single_blog .post_content_wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px; }
.blog_wrapper .single_blog .post_content_wrapper h3 a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #333146; }
.blog_wrapper .single_blog .post_content_wrapper p {
    margin: 20px 0 25px; }
.blog_wrapper .single_blog .post_content_wrapper .post_by {
    padding-bottom: 40px; }
.blog_wrapper .single_blog .post_content_wrapper .post_by a {
    color: #333146;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    font-family: "Rubik", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 30px; }
.blog_wrapper .single_blog .post_content_wrapper .post_by a i {
    padding-left: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .single_blog .post_content_wrapper .post_by a i:before {
    margin: 0;
    font-size: 14px; }
.blog_wrapper .single_blog .post_content_wrapper .post_by a:hover {
    color: #ff5a2c; }
.blog_wrapper .single_blog .post_content_wrapper .post_by a:hover i {
    padding-left: 15px; }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper span {
    padding-right: 15px;
    font-family: "Rubik", sans-serif;
    line-height: 30px; }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper .social-items li:last-child {
    margin-right: 0; }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper .social-items li a i {
    padding: 0;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 29px;
    border-radius: 50%;
    font-size: 15px;
    margin: 0;
    background: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper .social-items li a i:hover {
    padding: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper .social-items li a .fb_icon {
    color: #4867aa; }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper .social-items li a .tw_icon {
    color: #1da1f2; }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper .social-items li a .link_icon {
    color: #0077B5; }
.blog_wrapper .single_blog .post_content_wrapper .post_by .social_wrapper .social-items li a .in_icon {
    color: #262223; }
.blog_wrapper .single_blog .post_content_wrapper .post_bloger {
    padding: 30px 0 0px;
    border-top: 1px solid #d7d7d7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.blog_wrapper .single_blog .post_content_wrapper .post_bloger li {
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    color: #6a7a83;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    padding-right: 50px; }
.blog_wrapper .single_blog .post_content_wrapper .post_bloger li:last-child {
    padding-right: 0; }
.blog_wrapper .single_blog .post_content_wrapper .post_bloger li i {
    padding-right: 7px;
    font-size: 15px; }
.blog_wrapper .single_without_img {
    background: linear-gradient(-125deg, #e6793b 0%, #c9270e 100%);
    position: relative;
    z-index: 1; }
.blog_wrapper .single_without_img:before {
    position: absolute;
    content: "";
    background: url(../images/shapes/shape_bullet.png) repeat center center;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    z-index: -1; }
.blog_wrapper .single_without_img .post_content_wrapper {
    padding: 65px 50px 60px !important; }
.blog_wrapper .single_without_img .post_content_wrapper h3 a {
    color: #ffffff !important; }
.blog_wrapper .single_without_img .post_content_wrapper .post_date p {
    color: #ffffff !important; }
.blog_wrapper .single_without_img .post_content_wrapper .post_date p span {
    color: #092ace !important; }
.blog_wrapper .single_without_img .post_content_wrapper .post_by {
    padding: 40px 0 0 !important; }
.blog_wrapper .single_without_img .post_content_wrapper .post_by .social_wrapper span {
    color: #ffffff !important; }
.blog_wrapper .single_without_img .post_content_wrapper .post_by .social_wrapper .social-items li a i {
    color: #ffffff !important; }
.blog_wrapper .single_without_img .post_content_wrapper .post_by .social_wrapper .social-items li a i:hover {
    color: #ffffff; }
.blog_wrapper .single_without_img .post_content_wrapper .post_bloger {
    padding: 0 !important;
    border-top: 1px solid transparent !important; }
.blog_wrapper .single_without_img .post_content_wrapper .post_bloger li {
    color: #ffffff !important; }
.blog_wrapper .blog_post h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
    color: #333146;
    margin: 35px 0 25px; }
.blog_wrapper .blog_post .post_by {
    margin-bottom: 30px; }
.blog_wrapper .blog_post .post_by span {
    font-size: 12px;
    font-weight: 400;
    color: #6a7a83;
    font-family: "Rubik", sans-serif;
    padding-right: 50px;
    position: relative; }
.blog_wrapper .blog_post .post_by span:before {
    position: absolute;
    content: "";
    background: #333146;
    height: 15px;
    width: 1px;
    right: 25px;
    top: 5px; }
.blog_wrapper .blog_post .post_by span:last-child:before {
    display: none; }
.blog_wrapper .blog_post .post_by span .bloger_name {
    color: #6a7a83; }
.blog_wrapper .blog_post .post_by span a {
    color: #333146;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .blog_post .post_by span a:hover {
    color: #ff5a2c; }
.blog_wrapper .blog_post .postpage_content_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper {
    padding-top: 40px;
    padding-right: 50px; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper h4 {
    text-transform: uppercase;
    font-weight: 700;
    color: #333146;
    font-size: 20px; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items {
    position: relative;
    z-index: 1;
    margin: 20px 0 0;
    text-align: center; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li {
    background: #ffffff;
    padding-bottom: 15px; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a i {
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 34px;
    border-radius: 50%;
    font-size: 14px;
    margin: 0;
    border: 1px solid rgba(47, 47, 47, 0.1);
    background: transparent;
    color: #333146;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a i:hover {
    padding: 0; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .fb_icon {
    border: 1px solid #4867aa;
    color: #4867aa; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .fb_icon:hover {
    color: #ffffff;
    background: #4867aa; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .tw_icon {
    border: 1px solid #1da1f2;
    color: #1da1f2; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .tw_icon:hover {
    color: #ffffff;
    background: #1da1f2; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .link_icon {
    border: 1px solid #0077B5;
    color: #0077B5; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .link_icon:hover {
    color: #ffffff;
    background: #0077B5; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .in_icon {
    border: 1px solid #262223;
    color: #262223; }
.blog_wrapper .blog_post .postpage_content_wrapper .social_wrapper .social_items li a .in_icon:hover {
    color: #ffffff;
    background: #262223; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content {
    padding-top: 40px; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content p {
    margin-bottom: 25px;
    font-weight: 300; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content p:last-child {
    margin-bottom: 0; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 45px 0 30px; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content .quite_speech {
    padding: 25px 0px;
    font-size: 20px;
    font-style: italic;
    position: relative;
    line-height: 30px;
    color: #333146;
    padding-left: 40px; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content .quite_speech i {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 55px;
    opacity: 0.5;
    color: #ff5a2c;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content .banner {
    padding: 20px 0;
    text-align: center; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content .banner p {
    color: #ff5a2c;
    font-size: 14px;
    padding-top: 15px;
    font-weight: 500px;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .blog_post_content .banner p span {
    font-weight: 600 !important;
    color: #333146 !important; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count {
    padding-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .tags {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .tags li {
    padding-right: 3px;
    font-family: "Rubik", sans-serif;
    font-size: 12px; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .tags li a {
    color: #6a7a83;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .tags li a:hover {
    color: #ff5a2c; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .tags .tag_headline {
    font-weight: 600;
    color: #333146; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .comnent_count li {
    padding-left: 50px;
    position: relative;
    font-size: 12px; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .comnent_count li:before {
    position: absolute;
    content: "";
    background: #333146;
    height: 12px;
    width: 1px;
    right: -25px;
    top: 7px; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .comnent_count li:last-child:before {
    display: none; }
.blog_wrapper .blog_post .postpage_content_wrapper .post_response_count .comnent_count li i {
    padding-right: 10px; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper {
    background: #ffffff; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .items_title .title {
    font-size: 40px;
    font-weight: 700;
    color: #333146;
    margin: 65px 0 0; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper {
    border-bottom: 1px solid rgba(47, 47, 47, 0.05);
    padding-top: 40px;
    padding-bottom: 40px; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper:last-child {
    border-bottom: 1px solid rgba(47, 47, 47, 0);
    padding-bottom: 0px; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper:first-child {
    border-top: 1px solid transparent; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .reply_comment_text {
    padding-left: 50px !important;
    padding-top: 30px !important; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list:first-child {
    margin-bottom: 0; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .commnet_img {
    width: 55px;
    height: 55px; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .commnet_img img {
    border-radius: 50%; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text {
    width: 87%; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info {
    line-height: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info .author_name a {
    font-size: 16px;
    font-weight: 700;
    color: #333146;
    margin-right: 25px; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info .author_name span {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #6a7a83; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info .reply-comment a {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 0 30px;
    color: #092ace;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info .reply-comment a:hover {
    color: #ff5a2c; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info .reply-comment a:hover i {
    color: #ff5a2c;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-right: 10px;
    margin: 0;
    font-size: 10px; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info .reply-comment a i {
    padding-right: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text .author_info .reply-comment a i:before {
    margin: 0;
    font-size: 14px; }
.blog_wrapper .blog_post .postpage_content_wrapper .commnet-wrapper .comment-list-items .comment-list-wrapper .comment-list .comment-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin: 19px 0 0;
    color: #6a7a83; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper {
    margin-top: 50px; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .items_title {
    margin-bottom: 30px; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .items_title .title {
    font-size: 40px;
    font-weight: 700;
    color: #333146;
    margin-bottom: 10px; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .items_title p {
    margin: 0; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group {
    margin-bottom: 15px; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group input, .blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group textarea {
    background: transparent;
    border: 1px solid #d7d7d7;
    border-radius: 0px;
    height: 46px;
    padding: 0px 20px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
    color: #333146;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group input:focus, .blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group textarea:focus {
    border: 1px solid #333146;
    outline: none;
    color: #333146; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group input ::-webkit-input-placeholder, .blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group textarea ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #6a7a83;
    font-size: 12px;
    font-weight: 400;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group input ::-moz-placeholder, .blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group textarea ::-moz-placeholder {
    /* Firefox 19+ */
    color: #6a7a83;
    font-size: 12px;
    font-weight: 400;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group input :-ms-input-placeholder, .blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group textarea :-ms-input-placeholder {
    /* IE 10+ */
    color: #6a7a83;
    font-size: 12px;
    font-weight: 400;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group input :-moz-placeholder, .blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group textarea :-moz-placeholder {
    /* Firefox 18- */
    color: #6a7a83;
    font-size: 12px;
    font-weight: 400;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .form-group textarea {
    height: 150px;
    padding-top: 15px; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .submit-btn button {
    height: 60px;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 500;
    background: #ff5a2c;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    outline: none;
    color: #ffffff;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_post .postpage_content_wrapper .leave_comment_wrapper .leave_comment .submit-btn button:hover {
    background: #092ace; }
.blog_wrapper .blog_wrapper_right {
    padding-left: 50px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .items-title .title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .items-title .title:before {
    position: absolute;
    content: "";
    background: #333146;
    height: 3px;
    width: 20px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
.blog_wrapper .blog_wrapper_right .blog-right-items .widget_single {
    margin-bottom: 55px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .widget_single:last-child {
    margin-bottom: 0; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box {
    background: linear-gradient(65deg, #e3b659 0%, #dea265 100%);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 81px 0px rgba(47, 47, 47, 0.1);
    box-shadow: 0px 0px 81px 0px rgba(47, 47, 47, 0.1); }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .form_title {
    margin-bottom: 40px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .form_title h2 {
    font-size: 25px;
    line-height: 30px;
    padding-bottom: 0;
    font-weight: 700;
    position: relative;
    color: #ffffff; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .form_title p {
    padding-top: 15px;
    font-size: 12px;
    color: #ffffff; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .form_title p span {
    color: #ff5a2c; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form {
    padding: 0; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group {
    margin-bottom: 20px;
    position: relative; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group label {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group label i:before {
    margin: 0;
    color: #ffffff;
    font-size: 16px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group input, .blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group textarea {
    position: relative;
    background: transparent;
    border-bottom: 1px solid  #d7d7d7;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
    -webkit-box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0);
    height: 50px;
    padding: 10px 15px 10px 40px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group input:focus, .blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group textarea:focus {
    border-color: #ff5a2c;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group input::-webkit-input-placeholder, .blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group input::-moz-placeholder, .blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group input::-ms-input-placeholder, .blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group textarea::-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group input::-moz-placeholder, .blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .form-group textarea::-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .register-btn-box {
    padding-top: 20px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .register-btn-box .register-btn {
    background: #ff5a2c;
    color: white;
    padding: 0 50px;
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer; }
.blog_wrapper .blog_wrapper_right .blog-right-items .become_a_teacher .form-full-box .register-form .register-btn-box .register-btn:hover {
    background: #ff5a2c;
    color: #ffffff; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 40px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post:last-child {
    margin-bottom: 0; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post .recent_img {
    width: 25%; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post .recent_img img {
    border-radius: 5px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post .post_title {
    width: 75%;
    padding-left: 15px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post .post_title a {
    font-weight: 700;
    line-height: 24px;
    color: #333146;
    font-size: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post .post_title a:hover {
    color: #ff5a2c; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post .post_title .post-date {
    margin-top: 8px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .recent_post_wrapper .single-post .post_title .post-date span {
    font-weight: 400;
    font-size: 12px;
    color: #6a7a83;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .items-title {
    margin-bottom: 30px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .twitter-single {
    border-bottom: 1px solid rgba(141, 149, 166, 0.1);
    margin-bottom: 30px;
    padding-bottom: 30px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .twitter-single:last-child {
    border-bottom: none; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .twitter-single .twitter-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .twitter-single .twitter-post .twitter-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .twitter-single .twitter-post .twitter-title i {
    font-size: 35px;
    color: #1da1f3;
    line-height: 24px;
    margin-right: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .twitter-single .twitter-post .twitter-title p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #6a7a83; }
.blog_wrapper .blog_wrapper_right .blog-right-items .twitter_post_wrapper .twitter-single .twitter-post .twitter-title p a {
    color: #092ace;
    text-transform: uppercase;
    font-weight: 500; }
.blog_wrapper .blog_wrapper_right .blog-right-items .popular_tags .items-title {
    margin-bottom: 30px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .popular_tags .tags-items ul li {
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-right: 6px;
    padding-bottom: 10px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .popular_tags .tags-items ul li a {
    padding: 10px 25px;
    font-size: 15px;
    background: #eef2f5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #6a7a83;
    font-weight: 500;
    border-radius: 0px;
    text-transform: uppercase;
    font-family: "Rubik", sans-serif; }
.blog_wrapper .blog_wrapper_right .blog-right-items .popular_tags .tags-items ul li a:hover {
    background: #ff5a2c;
    color: #ffffff; }
.blog_wrapper .blog_wrapper_right .blog-right-items .archives .items-title {
    margin-bottom: 20px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .archives .archives-items {
    margin-left: 50px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .archives .archives-items ul li {
    padding-bottom: 12px; }
.blog_wrapper .blog_wrapper_right .blog-right-items .archives .archives-items ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    margin-right: 30px;
    color: #333146; }

.blog_wrapper .blog_wrapper_right .blog-right-items .archives .archives-items ul li a:after {
    position: absolute;
    font-family: "Flaticon";
    font-size: 10px;
    content: "\f103";
    left: -40px;
    bottom: -0px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-weight: 700; }
.blog_wrapper .blog_wrapper_right .blog-right-items .archives .archives-items ul li a:hover {
    color: #ff5a2c; }
.blog_wrapper .blog_wrapper_right .blog-right-items .archives .archives-items ul li a:hover:before {
    color: #ff5a2c; }
.blog_wrapper .blog_wrapper_right .blog-right-items .archives .archives-items ul li a:hover:after {
    left: -30px; }

.btn-btn-buton{
    border: 1px solid #755609;
    background-color: #0B3846;
    color: #f6e5e5;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}

.btn-btn-buton:hover{
    border: 1px solid #ffb700;
    background-color: #f57d03;
   color: whitesmoke;
}
.background-image {

    filter: brightness(var(--bg-bright)) contrast(1.33);
    -webkit-filter: brightness(var(--bg-bright)) contrast(1.33);
    -moz-filter: brightness(var(--bg-bright)) contrast(1.33);
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100% 100%;
}

.background-image2 {

    filter: brightness(var(--bg-bright2));
    -webkit-filter: brightness(var(--bg-bright2));
    -moz-filter: brightness(var(--bg-bright2));
}

.background-image3 {

    filter: brightness(var(--bg-bright));
    -webkit-filter: brightness(var(--bg-bright));
    -moz-filter: brightness(var(--bg-bright));
    min-height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.background-image-slider {

    filter: brightness(var(--bg-bright2)) contrast(1.33);
    -webkit-filter: brightness(var(--bg-bright2)) contrast(1.33);
    -moz-filter: brightness(var(--bg-bright2)) contrast(1.33);
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100% 100%;
}

.slider-area .altyazi {
    color: #363636;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}


.resimgaleri img{

}

.resimgaleri img:hover{
    border: 1px solid blue;

}

/*RUBY*/

/*---------------*/
/***** Ruby *****/
/*---------------*/
.grid {
    position: relative;
    margin: 0 auto;
    width: 100%;
    list-style: none;
    text-align: center;
    height: auto;
}

/* Common style */
.grid figure {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
   width: 100%;
    background: #ff0000;
    text-align: center;
    cursor: pointer;
}

.grid figure img {
    position: relative;
    display: block;
    min-height: 100%;
    max-width: 100%;
    opacity: 0.9;
    border-radius: 10px;
}

.grid figure figcaption {
    padding: 2em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}

.grid figure h2 {
    word-spacing: -0.15em;
    font-weight: 300;
}

.grid figure h2 span {
    font-weight: 800;
}

.grid figure h2,
.grid figure p {
    margin: 0;
}

.grid figure p {
    letter-spacing: 1px;
    font-size: 68.5%;
}
figure.effect-ruby {
    background-color: #be661e;
}

figure.effect-ruby img {
    opacity: 0.9;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

figure.effect-ruby:hover img {
    opacity: 0.5;
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.effect-ruby h2 {
    margin-top: 20%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,20px,0);
    transform: translate3d(0,20px,0);
}

figure.effect-ruby p {
    margin: 4em 0 0;
    padding: 1em;
    border: 1px solid #fff;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,20px,0) scale(1.1);
    transform: translate3d(0,20px,0) scale(1.1);
}

figure.effect-ruby:hover h2 {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

figure.effect-ruby:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0) scale(1);
    transform: translate3d(0,0,0) scale(1);
}

/*blog */
.blog-img img{
    width: 100%;
    height: 200px;
}

.blogyapisi{
    width: 100%;
    height: 100%;
    border: 1px solid rgba(224, 209, 209, 0.88);
    border-radius: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}
.blogyapisi a{
    text-decoration: none;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.87);
}
.blogyapisi a:hover{
    color: #091a65;
}
.btn-btn-blog{
    padding: 7px 15px;
    background-color: orange;
    border-radius: 10px;

}

.bloglist{
    margin-top: 10px;
}
.bloglist ul{
    padding-left: 8px;
}

.bloglist li{
    list-style: none;
    display: inline-block;
    font-size: 15px;
    padding-right: 20px;
}

.half-col{
    margin-top: 10px;
}

.wp-button{
    margin-top:10px;
}

.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:20px;
    right:20px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:38px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.float:hover{
    background-color: #1c7e02;
    color: white;
}

.wp-button2{
    margin-top:10px;
}

.float2{
    position:fixed;
    width:60px;
    height:60px;
    bottom:90px;
    right:20px;
    background-color: #253cd3;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:38px;
    box-shadow: 1px 1px 6px #999;
    z-index:100;
}
.float2:hover{
    background-color: #032f69;
    color: white;
}
.page-title{
    position: relative;
}
.detayresimbout{
    height: 300px;
    width: 100%;
}

.ortalamobil{
    text-align: left;
}

.iconortalamobil{
    text-align: right;
    margin-top: 0;
}


.style-switcher{
    position: fixed;
    left: 20px;
    bottom:100px;
    z-index: 10000;

}

.style-switcher .s-icon{
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 25px;
    background-color: #faf9f9;

    border: 1px solid rgba(2, 2, 2, 0.44);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}
.resimustunegel{
    position: absolute;
    top: 0;
    z-index: 1000000;
    width: 100%;
    height: auto;

}

/*iletişim sayfası bloklar*/

.iletisimalan{
    background-color: #f3f3f3;
    border-radius: 10px;
    width: 100%;
}
.iletisimalan i{
    font-size: 30px;
    color: white;
    background-color: var(--bg-iletisim);
    border-radius: 100%;
    display: flex;
    align-items: center;
    vertical-align: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 10px auto;
}
.iletisimalan a{
    color: #0e1491;
    font-size: 25px;
}


