@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

.offcanvas-start {
    border-right: 0;
}

.offcanvas-start .offcanvas-header {
    border-bottom: 1px solid rgb(209, 209, 209);
}

.offcanvas-start .offcanvas-header h5 {
    margin-bottom: 0;
}

.offcanvas-start .offcanvas-body {
    padding: 0;
}

.offcanvas-start .mobile-menu-list {
    list-style: disc;
    margin-bottom: 0;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #28275b;
}

.offcanvas-start .mobile-menu-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(209, 209, 209);
}

.offcanvas-start .mobile-menu-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.offcanvas-start .mobile-menu-list li a {
    color: #28275b;
    font-size: 15px;
    text-transform: uppercase;
}

.offcanvas-start .mobile-menu-list li a.active {
    color: #ed232b;
}

@-webkit-keyframes sticky-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes sticky-animation {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    background-color: #28275b !important;
    opacity: 0.9 !important;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 0.5rem 0 !important;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-name: sticky-animation;
    animation-name: sticky-animation;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.sticky .head-content .head-logo img {
    width: 100px !important;
}

.sticky .head-content .head-menu li {
    margin-right: 2.25rem !important;
}

.sticky .head-content .head-menu li:last-child {
    margin-right: 0 !important;
}

.sticky .head-content .head-menu li a {
    font-size: 13px !important;
    color: #fff !important;
}

.sticky .head-content .head-menu li a:hover,
.sticky .head-content .head-menu li a.active {
    color: #53af31 !important;
}

.sticky .head-content .mobile-menu-item span {
    background-color: #fff !important;
}

/* HEADER */
#head {
    background-color: #fff;
    padding: 1rem 0;
    z-index: 300;
}

#head .head-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#head .head-content .head-logo img {
    width: 130px;
}

#head .head-content .head-menu {
    list-style: none;
    display: flex;
    margin-bottom: 0;
}

#head .head-content .head-menu li {
    margin-right: 3.3rem;
}

#head .head-content .head-menu li:last-child {
    margin-right: 0;
}

#head .head-content .head-menu li a {
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    line-height: 37px;
}

#head .head-content .head-menu li a:hover,
#head .head-content .head-menu li a.active {
    color: #53af31;
}

#head .head-content .mobile-menu-item {
    margin: 0.3rem 0;
    width: 40px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: none;
}

#head .head-content .mobile-menu-item span {
    display: block;
    position: absolute;
    height: 3px;
    width: 40px;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

#head .head-content .mobile-menu-item span:nth-child(1) {
    top: 0px;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

#head .head-content .mobile-menu-item span:nth-child(2) {
    top: 10px;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

#head .head-content .mobile-menu-item span:nth-child(3) {
    top: 20px;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

/* HEAD SLİDER */
.head-slider-area {
    position: relative;
}

.head-slider-area .slide-img img {
    width: 100%;
    height: 100vh;
}

.head-slider-area .slide-img .mobile-slide {
    display: none;
    height: auto;
}

.head-slider-area .company-img img {
    width: 100%;
    height: 99vh;
}

.head-slider-area .company-img .mobile-company {
    display: none;
}

.head-slider-area .company-img .mobile-company img {
    height: auto;
}

.head-slider-area .swiper-horizontal>.swiper-pagination-bullets,
.head-slider-area .swiper-pagination-bullets.swiper-pagination-horizontal,
.head-slider-area .swiper-pagination-custom,
.head-slider-area .swiper-pagination-fraction {
    text-align: right;
    bottom: 10px;
    left: auto;
    right: 100px;
}

.head-slider-area .headSlide .swiper-pagination-bullet {
    width: 38px;
    height: 5px;
    border-radius: 0;
    background-color: #182048;
    opacity: .7;
    margin: 0 9px !important;
}

.head-slider-area .headSlide .swiper-pagination-bullet-active {
    background-color: #53af31;
    opacity: 1;
}

/* Kampanya Slider */
.head-slider-area .companySlide .swiper-button-next,
.head-slider-area .companySlide .swiper-button-prev {
    top: auto;
    bottom: 30px;
    background-color: #53af31;
    color: #fff;
}

.head-slider-area .companySlide .swiper-button-next {
    right: 40%;
}

.head-slider-area .companySlide .swiper-button-prev {
    left: 40%;
}

.head-slider-area .companySlide .swiper-button-next::after,
.head-slider-area .companySlide .swiper-button-prev::after {
    font-size: 17px;
}

/* BANNER AREA */
.head-banner-area .banner-img img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}
.head-banner-area.blog-banner-area{
    background-image: url(../img/blog-breadcrumb.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 510px;
    padding: 5rem 0;
    color: #fff;
}
.head-banner-area.blog-banner-area .page-head h2{
    font-weight: 800;
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}
.head-banner-area.blog-banner-area .banner-blog-item{
    width: 32%;
}
.head-banner-area.blog-banner-area .banner-blog-item .banner-date{
    display: flex;
    align-items: center;
}
.head-banner-area.blog-banner-area .banner-blog-item .banner-date .date-icon{
    margin-right: 0.85rem;
}
.head-banner-area.blog-banner-area .banner-blog-item .banner-date .date-icon img{
    width: 60px;
}
.head-banner-area.blog-banner-area .banner-blog-item .banner-date .date-info{
    font-size: 16px;
    font-weight: 500;
}
.head-banner-area.blog-banner-area .banner-blog-item a{
    color: #fff;
}
.head-banner-area.blog-banner-area .banner-blog-item h5{
    margin-top: 1rem;
    font-size: 17px;
    font-weight: 500;
}
.head-banner-area.blog-banner-area .banner-blog-item p{
    font-size: 14px;
    line-height: 1.15rem;
    font-weight: 300;
}

/* BLOG DETAİLS */
.blog-details-banner{
    background-image: url(../img/kulak-cinlamasi.jpg);
    background-size: cover;
    padding: 2.5rem 0;
    height: 400px;
    position: relative;
}
.blog-details-banner .blog-head{
    position: absolute;
    bottom: 40px;
}
.blog-details-banner .blog-head h2{
    font-size: 28px;
    text-transform: uppercase;
    color: #28275b;
    letter-spacing: -1px;
    font-weight: 800;
}
.blog-details-banner .blog-head .bread-list{
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-details-banner .blog-head .bread-list li{
    margin-right: 1.5rem;
    font-size: 14px;
    position: relative;
}
.blog-details-banner .blog-head .bread-list li::after{
    content: "/";
    position: absolute;
    top: 6%;
    right: -14px;
}
.blog-details-banner .blog-head .bread-list .bread-info::after{
    content: none;
}
.blog-details-banner .blog-head .bread-list li a{
    color: #28275b;
}
.blog-details a {
    color: #000 !important;
    font-size: 15px;
}

#st-1 .st-btn {
    margin-right: 0.5rem !important;
}
.sidebar-list{
    position: sticky;
    top: 80px;
}
.sidebar .sidebar-head {
    background-color: #28275b;
    color: #fff;
    padding: 1rem;
    font-size: 15px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.sidebar .sidebar-content ul {
    list-style: none;
    padding-left: 0;
}

.sidebar .sidebar-content {
    padding: 0.75rem;
    box-shadow: 0 11px 15px 10px rgb(0 0 0 / 5%);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.sidebar .sidebar-content ul li {
    border-bottom: 1px solid rgb(230, 230, 230);
    padding: 0.6rem 0.3rem;
    margin-bottom: 0.7rem;
}

.sidebar .sidebar-content ul li:last-child {
    border-bottom: 0 !important;
}
.sidebar .sidebar-content ul li a{
    font-size: 13px;
}

.blog-details .blog-detail-content .content-text-area h3{
    font-size: 17px;
}
.blog-details .blog-detail-content .content-text-area p{
    font-size: 14px;
    text-align: justify;
}

/* ANASAYFA BİZ KİMİZ */
.home-about-section {
    background-image: url(../img/biz-kimiz-foto.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 330px;
    padding: 3rem 0;
}

.home-about-section .about-content-area {
    display: flex;
    justify-content: flex-end;
}

.home-about-section .about-content {
    width: 50%;
    text-align: right;
}

.home-about-section .about-content .content-head h4 {
    margin-bottom: 0;
    font-style: italic;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    color: #252861;
}

.home-about-section .about-content .content-text {
    margin-top: 0.65rem;
}

.home-about-section .about-content .content-text p {
    font-size: 15px;
    margin-bottom: 0;
}

/* ANASAYFA MANŞET */
.home-manset-section .manset-item {
    text-align: center;
}

.home-manset-section .manset-item .item-icon img {
    width: 65px;
    height: 60px;
    object-fit: contain;
}

.home-manset-section .manset-item .item-head {
    margin-top: 0.65rem;
    margin-bottom: 0.65rem;
}

.home-manset-section .manset-item .item-head span {
    color: #53af31;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.home-manset-section .manset-item .item-text p {
    margin-bottom: 0;
    font-size: 14px;
}

/* ANASAYFA SECTİON 2 */
.home-section-2 .section-2-content {
    background-color: #f4f4f4;
}

.home-section-2 .section-2-content .section-2-head {
    position: relative;
    bottom: 38px;
}

.home-section-2 .section-2-content .section-2-head h4 {
    color: #182048;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
}

.home-section-2 .section-2-content .section-2-head .head-mobile-img {
    display: none;
}

.home-section-2 .section-2-content .section-2-head .head-mobile-img img {
    width: 90px;
}

.home-section-2 .section-2-content .section-2-text {
    padding: 0 0rem 3rem 0;
}

.home-section-2 .section-2-content .section-2-text p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.4rem;
    font-weight: 400;
}

.home-section-2 .section-2-img {
    margin-top: -240px;
}

.home-section-2 .section-2-img .img-content {
    display: flex;
    justify-content: flex-end;
}

.home-section-2 .section-2-img .img-content img {
    width: 250px;
}

/* ANASAYFA SECTİON 3 */
.home-section-3 {
    background: linear-gradient(13deg, #f4f4f4 50%, #fff 50%);
}

.home-section-3 .section-3-img img {
    width: 90%;
}

.home-section-3 .section-3-content .content-head h5 {
    text-transform: uppercase;
}

.home-section-3 .section-3-content .content-head h5 .head-1 {
    color: #252861;
    font-size: 31px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.home-section-3 .section-3-content .content-head h5 .head-2 {
    color: #53af31;
    font-size: 19px;
    letter-spacing: 8px;
    font-weight: 300;
}

.home-section-3 .section-3-content .content-text {
    margin-top: 1.85rem;
}

.home-section-3 .section-3-content .content-text ul {
    padding-left: 1rem;
}

.home-section-3 .section-3-content .content-text ul li::marker {
    color: #53af31;
    font-size: 23px;
}

.home-section-3 .section-3-content .content-text ul li {
    font-size: 15px;
}

/* ANASAYFA SECTİON 4 */
.home-section-4 .section-4-img img {
    width: 100%;
}

.home-section-4 .section-4-text p {
    text-align: center;
    margin-bottom: 0;
}

.home-section-4 .section-4-button {
    background-color: #dfdfdf;
    text-align: center;
    border-radius: 20px;
}

.home-section-4 .section-4-button a {
    color: #3d3c69;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
    width: 100%;
    display: block;
}

/* ANASAYFA SECTİON 5 */
.home-section-5 .section-5-img-content-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-section-5 .section-5-img-content-area .img-content {
    width: 33%;
    margin-bottom: 2rem;
}

.home-section-5 .section-5-img-content-area .img-content img {
    width: 75px;
}

.home-section-5 .section-5-content {
    text-align: right;
}

.home-section-5 .section-5-content .section-head {
    margin-bottom: 1.85rem;
}

.home-section-5 .section-5-content .section-head h6 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 0;
    color: rgb(71, 71, 71);
}

.home-section-5 .section-5-content .section-text p {
    font-size: 15px;
}

/* ANASAYFA ABONE OLMA */
.siser-subscribe .subscribe-content {
    background-color: #dfdfdf;
    border-radius: 12px;
}

.siser-subscribe .subscribe-content .row {
    --bs-gutter-x: 2.65rem;
}

.siser-subscribe .subscribe-content input,
.siser-subscribe .subscribe-content button {
    border-radius: 12px;
}

.subscribe-content button {
    text-transform: uppercase;
    background-color: #28275b;
    color: #fff;
    font-weight: 600;
}

.subscribe-content button:hover {
    background-color: #181738;
    color: #fff;
}

.siser-subscribe .subscribe-content .form-control:focus {
    box-shadow: none;
    border-color: #28275b;
}

/* ANASAYFA MÜŞTERİ YORUMLARI */
.siser-reviews .reviews-border {
    background-color: #28275b;
    height: 2px;
}

.siser-reviews .review-section-head {
    margin-top: -30px;
}

.siser-reviews .review-section-head h5 {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #28275b;
    margin-bottom: 0;
}

.siser-reviews .swiper-wrapper {
    padding: 2rem 0;
}

.siser-reviews .swiper-wrapper .swiper-slide {
    padding: 0 0.35rem;
}

.siser-reviews .review-item {
    padding: 1rem 1.5rem;
    box-shadow: rgba(99, 99, 99, 0.6) 0px 2px 8px 0px;
    border-radius: 25px;
}

.siser-reviews .review-item .item-head-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.55rem;
}

.siser-reviews .review-item .item-head-content .item-writer {
    color: #28275b;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

.siser-reviews .review-item .item-head-content .item-ratings {
    color: rgb(231, 208, 79);
}

.siser-reviews .review-item .item-text p {
    margin-bottom: 0;
    font-size: 13px;
    text-align: justify;
    line-height: 1.15rem;
}

.siser-reviews .swiper-pagination {
    bottom: 0 !important;
}

.siser-reviews .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 1px;
}

.siser-reviews .swiper-pagination-bullet-active {
    background-color: #28275b;
}

/* KURUMSAL */
.siser-about-us {
    margin-bottom: 140px;
}

.siser-about-us .grey-and-circle {
    margin-top: -277px;
}

.siser-about-us .about-us-container {
    margin-top: -450px;
}

.siser-about-us .about-us-head {
    margin-bottom: 1.35rem;
}

.siser-about-us .about-us-head h2 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #28275b;
}

.siser-about-us .about-us-text p {
    font-size: 15px;
    text-align: justify;
}

.siser-about-us .about-us-img {
    margin-bottom: -60px;
}

.siser-about-us .about-us-img img {
    width: 100%;
    border: 3px solid #fff;
}

/* KURUMSAL 2 */
.siser-about-us-section-2 .section-2-content span {
    color: rgb(27, 27, 27);
    font-weight: 300;
    margin-right: 2.75rem;
    position: relative;
}

.siser-about-us-section-2 .section-2-content span:last-child {
    margin-right: 0;
}

.siser-about-us-section-2 .section-2-content span:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 120%;
    background-color: #67d141;
    width: 32px;
    height: 1px;
}

.siser-about-us-section-2 .section-2-content span:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 110%;
    background-color: #67d141;
    width: 32px;
    height: 1px;
}

/* KURUMSAL 70 */
.siser-about-us-manset .manset-img img {
    width: 100%;
}

/**/
.siser-about-us-last-section .last-section-content .content-head {
    margin-bottom: 1rem;
}

.siser-about-us-last-section .last-section-content .content-head h4 {
    margin-bottom: 0;
    text-transform: uppercase;
    color: #53af31;
    font-size: 21px;
    font-weight: 400;
}

.siser-about-us-last-section .last-section-content .content-head h4 span {
    font-weight: 600;
}

.siser-about-us-last-section .last-section-content .content-text p {
    text-align: justify;
}

.siser-about-us-last-section .last-section-content {
    margin-bottom: 2rem;
}

.siser-about-us-last-section .content-bottom-1 {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: #53af31;
}

.siser-about-us-last-section .content-bottom-1 img {
    width: 85px;
}

.siser-about-us-last-section .content-bottom-2 {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: #0f2e49;
    text-align: right;
}

.siser-about-us-last-section .content-bottom-2 img {
    width: 85px;
}

/* ÇOCUKLAR İÇİN */
.siser-childs-section-1 {
    background-image: url(../img/childs-section-1-bg.png);
    background-repeat: no-repeat;
}

.siser-childs-section-1 .section-1-content-area .content-item {
    margin-bottom: 3rem;
}

.siser-childs-section-1 .section-1-content-area .content-item .content-head {
    background-color: #53af31;
    display: flex;
    align-items: center;
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 12px;
    margin-bottom: 1.15rem;
}

.siser-childs-section-1 .section-1-content-area .content-item .content-head h3 {
    display: inline-block;
    margin-bottom: 0;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.siser-childs-section-1 .section-1-content-area .content-item .content-head img {
    width: 28px;
}

.siser-childs-section-1 .section-1-content-area .content-item.content-2 {
    text-align: right;
    margin-bottom: 1.5rem;
}

.siser-childs-section-1 .section-1-content-area .content-item.content-2 .content-head {
    background-color: #28275b;
}

/**/
.siser-child-section-slider .swiper {
    padding: 0 4rem;
}

.siser-child-section-slider .slide-img {
    margin-bottom: 1rem;
}

.siser-child-section-slider .slide-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 36px;
}

.siser-child-section-slider .slide-head {
    text-align: center;
}

.siser-child-section-slider .slide-head h5 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 400;
    color: #28275b;
}

.siser-child-section-slider .swiper .swiper-button-next:after,
.siser-child-section-slider .swiper .swiper-button-prev:after {
    content: url(../img/siser-navigation.png);
}

/**/
.siser-child-section-description .description-area {
    background-color: #f1f0f0;
    padding: 2.5rem 1.5rem;
}


/* FOOTER ÜSTÜ SOSYAL MEDYA */
.social-icons {
    background-color: #f0eeee;
}

.social-icons .row {
    --bs-gutter-x: 8rem;
}

.social-icons .social-icon-item {
    text-align: center;
    position: relative;
}

.social-icons .social-icon-item::after {
    content: url(../img/social-after.png);
    position: absolute;
    right: -10px;
    top: 50%;
    width: 20px !important;
}

.social-icons .social-icon-item img {
    width: 60%;
}

.social-icons-2 {
    background-color: #fff;
}

.social-icons .social-icon-item.son-item::after {
    content: none;
}

/* ONLİNE İŞİTME TESTİ */
.siser-test-section .test-content-area .content-head {
    background-color: #53af31;
    display: inline-block;
    padding: 0.35rem 0.8rem;
    border-radius: 12px;
    margin-bottom: 1.15rem;
}

.siser-test-section .test-content-area .content-head h4 {
    display: inline-block;
    margin-bottom: 0;
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}

.siser-test-section .test-content-area .content-head img{
    width: 28px;
}

.siser-test-section .test-content-area .content-question p{
    font-size: 18px;
}

.siser-test-section .test-content-area .content-answer-area{
    margin-top: 1.35rem;
}

.siser-test-section .test-content-area .content-answer-area .form-check{
    margin-bottom: 0.7rem;
    font-size: 15px; 
}

.siser-test-section .test-content-area .content-answer-area .form-check-input{
    border: 1px solid #53af31;
    cursor: pointer;
}

.siser-test-section .test-content-area .content-answer-area .form-check-input:focus{
    box-shadow: none;
}
.siser-test-section .test-content-area .content-answer-area .form-check-input:checked{
    background: #28275b;
}

.siser-test-section .test-content-area .content-answer-area .form-check-input:checked[type="radio"]{
    background-image: none;
}

#svg_form_time {
    height: 15px;
    max-width: 80%;
    margin: 40px auto 20px;
    display: block;
}

#svg_form_time circle,
#svg_form_time rect {
    fill: white;
}

.disabled {
    display: none;
}
.siser-test-section .button button {
    background-color: #28275b;
    border-radius: 5px;
    padding: 8px 10px;
    margin: 10px;
    font-weight: bold;
    font-size: 13px;
    color: white;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgb(0, 0, 0, 0.5);
    border: 0;
}

.siser-test-section .test-content-area .content-level-area{
    margin-top: 2rem;
}

.siser-test-section .test-content-area .content-level-area .progress{
    height: 0.65rem;
    background: #fff;
    border: 1px solid #53af31;
}

.siser-test-section .test-content-area .content-level-area .progress-bar{
    background: #53af31;
}

.siser-test-section .test-description{
    margin-top: 2.15rem;
}


/* BLOG */
.siser-blog-section{
    margin-top: -55px;
}
.siser-blog-section .row{
    --bs-gutter-x: 4rem;
}
.siser-blog-section .blog-item{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 15px;
    background-color: #fff;
}
.siser-blog-section .blog-item .blog-body{
    padding: 1.9rem 1.2rem;
}
.siser-blog-section .blog-item .blog-body .blog-head{
    margin-bottom: 1.65rem;
}
.siser-blog-section .blog-item .blog-img img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.siser-blog-section .blog-item .blog-body .blog-head h5{
    margin-bottom: 0;
    color: #28275b;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}
.siser-blog-section .blog-item .blog-body .blog-head h5::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    background-color: #53af31;
    width: 45px;
    height: 2px;
}
.siser-blog-section .blog-item .blog-body .blog-text p{
    font-size: 14px;
    line-height: 1.15rem;
    text-align: justify;
}
.siser-blog-section .blog-item .blog-body .blog-text p:last-child{
    margin-bottom: 0;
}
.siser-blog-section .blog-item .blog-body .blog-button{
    margin-top: 1rem;
}
.siser-blog-section .blog-item .blog-body .blog-button a{
    color: #696969;
    font-weight: 300;
}
/**/
.siser-blog-section-2{
    background-color: #ececec;
}
.siser-blog-section-2 .row{
    --bs-gutter-x: 4rem;
}
.siser-blog-section-2 .section-head h4{
    color: #28275b;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
}
.siser-blog-section-2 .blog-item .blog-img{
    margin-bottom: 0.65rem;
}
.siser-blog-section-2 .blog-item .blog-img img{
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 7px;
}
.siser-blog-section-2 .blog-item .blog-head{
    margin-bottom: 0.15rem;
    margin-top: 0.75rem;
}
.siser-blog-section-2 .blog-item .blog-head h5{
    color: #53af31;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 18px;
}
.siser-blog-section-2 .blog-item .blog-text p{
    text-align: justify;
    font-size: 14px;
    line-height: 1.15rem;
}

/* YARDIMCI ÜRÜNLER */
.siser-helper-products .section-desc{
    margin-bottom: 4rem;
}
.siser-helper-products .section-desc p{
    line-height: 1.8rem;
    margin-bottom: 0;
}
.siser-helper-products .section-item{
    margin-bottom: 3.5rem;
}
.siser-helper-products .section-item .row{
    --bs-gutter-x: 3rem;
}
.siser-helper-products .section-item .item-head{
    margin-bottom: 1.15rem;
}
.siser-helper-products .section-item .item-head h3{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.siser-helper-products .section-item .item-content-area .swiper{
    padding: 1rem 0.5rem 1.85rem 0.5rem;
}
.siser-helper-products .section-item .item-content-area .swiper-pagination{
    bottom: 0 !important;
}
.siser-helper-products .section-item .item-content-area .swiper-pagination-bullet{
    width: 15px;
    height: 6px;
    border-radius: 2px;
}
.siser-helper-products .section-item .item-content-area .swiper-pagination-bullet-active{
    background-color: #28275b;
}
.siser-helper-products .section-item .item-content-area .product-item .product-img{
    margin-bottom: 0.65rem;
}
.siser-helper-products .section-item .item-content-area .product-item .product-img img{
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 7px;
}
.siser-helper-products .section-item .item-content-area .product-item .product-head{
    margin-bottom: 0.15rem;
    margin-top: 0.75rem;
}
.siser-helper-products .section-item .item-content-area .product-item .product-head h5{
    color: #53af31;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 17px;
}
.siser-helper-products .section-item .item-content-area .product-item .product-text p{
    text-align: justify;
    font-size: 13px;
    line-height: 1.15rem;
}

/* ÜRÜN DETAY */
.products-banner{
    background-color: #28275b;
    height: 200px;
    position: relative;
}
.products-banner .product-head{
    position: absolute;
    bottom: 40px;
}
.products-banner .product-head h2{
    font-size: 27px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    font-weight: 800;
}
.products-banner .product-head .bread-list{
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.products-banner .product-head .bread-list li{
    margin-right: 1.5rem;
    font-size: 13px;
    position: relative;
    color: #53af31;
}
.products-banner .product-head .bread-list li::after{
    content: "/";
    position: absolute;
    top: 6%;
    right: -14px;
}
.products-banner .product-head .bread-list .bread-info::after{
    content: none;
}
.products-banner .product-head .bread-list li a{
    color: #fff;
}
/**/
.siser-product-details .row{
    --bs-gutter-x: 2.5rem;
}
.siser-product-details .details-text h4{
    font-size: 18px;
}
.siser-product-details .details-text p{
    font-size: 15px;
    text-align: justify;
}
.siser-product-details .details-img img{
    width: 100%;
    border: 1px solid rgb(182, 182, 182);
}

/* İLETİŞİM */
.siser-contact-section .section-head h2 {
    margin-bottom: 0;
    color: #5eb43f;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
}

.siser-contact-section .contact-info {
    background-color: #272653;
    color: #fff;
    padding: 2rem 3.5rem 2rem 1.65rem;
    border-radius: 12px;
    margin-top: 0.85rem;
}

.siser-contact-section .contact-info .head-1 {
    color: #5eb43f;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 21px;
}

.siser-contact-section .contact-info .contact-item {
    margin-top: 1.5rem;
    line-height: 1.3rem;
}

.siser-contact-section .contact-info .contact-item a {
    color: #fff;
}

.siser-contact-section .contact-info .maps-item {
    margin-top: 1.5rem;
}

.siser-contact-section .contact-info .maps-item iframe {
    border-radius: 12px;
}

.siser-contact-section .form-col {
    margin-left: -28px;
}

.siser-contact-section .contact-form {
    background-color: #1b1a4b;
    padding: 2.25rem 1.85rem 3rem 1.85rem;
    border-radius: 12px;
}

.siser-contact-section .contact-form label {
    color: rgb(173, 173, 173);
    font-size: 15px;
    font-weight: 300;
}

.siser-contact-section .contact-form .form-select,
.siser-contact-section .contact-form .form-control {
    background-color: transparent;
    border-radius: 0;
    color: rgb(216, 216, 216);
    font-size: 15px;
    border: 0;
    padding: 0.188rem 0.45rem;
}

.siser-contact-section .contact-form .form-select {
    border-bottom: 3px solid rgb(192, 192, 192);
}

.siser-contact-section .contact-form .form-control {
    border-bottom: 4px solid rgb(192, 192, 192);
}

.siser-contact-section .contact-form .form-select:focus,
.siser-contact-section .contact-form .form-control:focus {
    box-shadow: none;
}

.siser-contact-section .contact-form .form-control.textareaForm {
    background-color: #121133;
    resize: none;
    border: 0;
}

.siser-contact-section .contact-form .btn {
    background-color: #53af31;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-weight: 400;
}

/* FOOTER */
#foot {
    background-image: url(../img/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#foot .foot-item .item-head {
    margin-bottom: 1.35rem;
}

#foot .foot-item .item-head h6 {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

#foot .foot-item .foot-list {
    margin-bottom: 0;
    padding-left: 1rem;
}

#foot .foot-item .foot-list li::marker {
    color: #53af31;
    font-size: 23px;
}

#foot .foot-item .foot-list li {
    margin-bottom: 0.4rem;
}

#foot .foot-item .foot-list li:last-child {
    margin-bottom: 0;
}

#foot .foot-item .foot-list li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
}

#foot .foot-item .foot-contact .contact-item {
    color: #fff;
    margin-bottom: 1.35rem;
    font-size: 15px;
}

#foot .foot-item .foot-contact .contact-item svg {
    color: #53af31;
    font-size: 20px;
}

#foot .foot-item .foot-contact .contact-item a {
    font-size: 15px;
    color: #fff;
}

#foot .foot-item .foot-list li a:hover,
#foot .foot-item .foot-contact .contact-item a:hover {
    color: #ed232b;
}

#foot .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#foot .footer-bottom .bottom-item a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

#foot .footer-bottom .scrollUp a {
    cursor: pointer;
}

#foot .footer-bottom .scrollUp img {
    width: 28px;
}

#scrollUp {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 300;
    transition: all 0.3s ease;
}