/*
CodedBy C.ArdaAkin with PhpStorm
 * Date: 25.09.2024
 * Time: 11:28
*/
header.desctop{
    position: sticky;
    left: 0;
    width: 100svw;
    top: 0;
    z-index: 100;

    background: WHITE;
    /* border-bottom: 1px solid #ddd; */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 30px transparent;
    transition: all 0.5s ease-in-out;
}
header.desctop .content-container{

}
header.desctop.fixed{
    position: sticky;
    top: -38px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.17);
}
header.desctop a.logo{
    display: block;
    transition: all 0.5s ease-in-out;
    margin-top: 0;
    padding: 15px;
    padding-left: 0;
}
header.desctop a.logo img{
    max-height: 40px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}
header.desctop.fixed a.logo{}

header.desctop .list-area{}
header.desctop .list-area > ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 100%;
    padding-left: 0;
    margin-bottom: 0;
}
header.desctop .list-area > ul > li{
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
header.desctop .list-area > ul > li.first-icon{
    transition: all 0.5s ease-in-out;
    display: flex;
    width: 0;
    max-width: 0;
    overflow: hidden;
}
header.desctop .list-area > ul > li.first-icon img{
    max-height: 50px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    width: auto;
    visibility: hidden;
}
header.desctop.fixed .list-area > ul li.first-icon{
    max-width: 400px;
}
header.desctop.fixed .list-area > ul li.first-icon img{
    opacity: 1;
    visibility: visible;
}

header.desctop .list-area >  ul > li.last-icon{
    transition: all 0.5s ease-in-out;
    display: flex;
    width: fit-content;
    max-width: 400px;
    overflow: hidden;
}
header.desctop .list-area  > ul > li.last-icon img{
    max-height: 50px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    width: 100%;
    visibility: visible;
}
header.desctop.fixed .list-area ul > li.last-icon{
    max-width: 0px;
}
header.desctop.fixed .list-area >  ul > li.last-icon img{
    opacity: 0;
    visibility: hidden;
}

header.desctop .list-area >  ul > li > a{
    color: var(--menufontClr);
    padding: 5px 14px;
    font-size: 1em;
    box-sizing: border-box;
    border: 1px solid transparent;
    font-weight: 400;
}
header.desctop.fixed .list-area >  ul  > li > a{

}


header.desctop .list-area ul > li.type1.has-sub,
header.desctop .list-area ul > li.type2.has-sub
{
    position: relative;
}
header.desctop .list-area ul > li.type1.has-sub:hover > a{
    position: relative;
    z-index: 11;
    border: none ;
    border-bottom: 5px solid var(--clr_promo_3);
    transition: all 0.5s ease-in-out;

    background: WHITE;

}
header.desctop.fixed .list-area ul > li.has-sub > .sub-area.type1{
    top: calc(127px - 38px);
}
header.desctop .list-area ul > li.has-sub > .sub-area.type1{
    z-index: 10;
    position: fixed;
    left: 0;
    min-width: 100%;
    min-height: 60svh;
    height: fit-content;
    background: var(--type1SubMenuBack);
    border: 1px solid #ddd;
    border-top: none !important;
    top: 127px;
    opacity: 0;
    visibility: hidden;
    transition: 0.1s ease-in-out;
    padding-top: 50px;
    padding-bottom: 50px;
}
header.desctop .list-area ul > li.has-sub:hover > .sub-area.type1{

    opacity: 1;
    visibility: visible;
}
header.desctop .list-area ul > li.has-sub > .sub-area > div{}


header.desctop .list-area ul > li.type2.has-sub .sub-area.type2{
    position: absolute;
    left: 0;
    width: fit-content;
    min-width: 320px;
    height: fit-content;

    opacity: 0;
    visibility: hidden;
    top: 110%;
    transition: all 0.5s ease-in-out;
}
header.desctop .list-area ul > li.type2.has-sub:hover .sub-area.type2 .icon-card{
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.23);
    transform: translateY(0) !important;
}
header.desctop .list-area ul > li.type2.has-sub:hover .sub-area.type2{
    opacity: 1;
    visibility: visible;
    top:  70%;
}

header.desctop .list-area ul > li.type2.has-sub .sub-area > ul{
    margin-top: 15px;
    position: relative;
    border-radius: calc(var(--radius) + 10px);
    background: WHITE;
    padding: 25px;
    height: fit-content;
    box-shadow: 0 0 30px transparent;
    transform: translateY(0);
    transition: all 0.2s ease-in-out;
}
header.desctop .list-area ul > li.type2.has-sub:hover .sub-area > ul{
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.23);
    transform: translateY(0) !important;
}

header.desctop .list-area ul > li.type2.has-sub .sub-area > ul > li{
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: 8px;
    justify-content: center;
}
header.desctop .list-area ul > li.type2.has-sub .sub-area > ul > li > a{
    display: flex;
    width: 100%;
    padding: 6px 11px;
    color: var(--pagefont_clr);
    flex-direction: row;
    align-items: center;
    justify-content: end;
    text-align: right;
    border: 1px solid transparent;
    border-radius: calc(var(--radius) + 10px);
    background: transparent;
    font-size: 1.1em;
}
header.desctop .list-area ul > li.type2.has-sub .sub-area > ul > li > a:hover{
    background: #eee;
}
header.desctop .list-area ul > li.type2.has-sub .sub-area > ul > li > a i{
    color: #ddd;
}


header.desctop > .header-top,
header.desctop > .header-middle,
header.desctop > .header-bottom{
    width: 100%;
}
header.desctop .header-top{
    background: #f6f6f6;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 38px;
    border-bottom: 1px solid #f3f3f3;
}
header.desctop .header-middle{
    height: 89px;
    padding-top: 10px;
    padding-bottom: 10px;
}
header.desctop .header-bottom{
    padding-top: 5px;
    padding-bottom: 5px;
}

header.desctop .header-list.list-type-1{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 0;
    margin-bottom: 0;
}
header.desctop .header-list.list-type-1 li:first-child{
    padding-left: 0;
    border-left: 0;
}
header.desctop .header-list.list-type-1 li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 15px;
    border-left: 1px solid #ddd;
    padding-left: 10px;
}
header.desctop .header-list.list-type-1 li a{
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;

    font-size: 0.8em;
    color: var(--menufontClr);
    justify-content: center;

}


.sg-robo{
    position: fixed;
    right: 30px;
    bottom: 80px;
    z-index: 300;
    background: WHITE;
    border-radius: var(--radius);
    padding: 25px;
}
.sg-robo .head{
    position: relative;
    animation: robo-head-anim 2s ease-in-out infinite;
}
.sg-robo .head::after{
    content:'';
    width: 70%;
    left: 15%;
    top: 100%;

    height: 20px;
    border-radius: 250%;
    background: rgba(0,0,0,0.1);
    position: absolute;
    animation: robo-shadow-anim 2s ease-in-out infinite;
}
@-webkit-keyframes robo-head-anim{
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
@-webkit-keyframes robo-shadow-anim{
    0% {

        width: 70%;
        left: 15%;
        transform: translateY(0);
    }
    50% {

        width: 60%;
        left: 20%;
        transform: translateY(-20px);
    }
    100% {

        width: 70%;
        left: 15%;
        transform: translateY(0);
    }
}
.sg-robo .head .eyes{
    width: 35px;
    left: calc(50% - 19px);
    top: calc(50% - 2px);
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 40;
}
.sg-robo .head .eyes{}
.sg-robo .head .eyes span{
    display: inline-flex;
    height: 13px;
    border-radius: 150px;
    width: 13px;
    background: WHITE;
    transition: all 0.5s ease-in-out;
    animation: robo-eye-anim 2s ease-in-out 3s infinite normal;
}

@-webkit-keyframes robo-eye-anim {
    0%{
        height: 13px;
    }
    5%{
        height: 0;
    }
    10%{
        height: 13px;
    }
    100%{
        height: 13px;
    }
}
.sg-robo .head img{
    position: relative;
    z-index: 10;
    width: 120px;
}


.bottom-helper-panel{
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    border-bottom: 7px solid var(--clr_promo_1);
    z-index: 50;
    align-items: center;
    justify-content: center;
    display: flex;
}
.bottom-helper-panel .maincontent:hover{

}
.bottom-helper-panel .maincontent{
    transition: all 0.5s ease-in-out;
     position: relative;
    margin-bottom: -3px;
    min-width: 150px;
    padding: 10px;
    background: var(--clr_promo_1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: WHITE;
}

.bottom-helper-panel .maincontent::before {
    content: '';
    left: -150px;
    height: 100%;
    position: absolute;
    top: 0;
    background: url(../img/elements/panel-left.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right center;
    width: 150px;
    z-index: 45;

}

.bottom-helper-panel .maincontent::after {
    content: '';
    right: -150px;
    height: 100%;
    position: absolute;
    top: 0;
    background: url(../img/elements/panel-right.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
    width: 150px;
    z-index: 45;
}
.bottom-helper-panel .maincontent > ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;

}
.bottom-helper-panel .maincontent > ul > li{
    list-style-type: none;
    border-left: 1px solid var(--clr_promo_1b);
    display: inline-flex;
    align-items: center;
    justify-content: center;

}
.bottom-helper-panel .maincontent > ul > li:last-child{

}
.bottom-helper-panel .maincontent > ul > li:first-child{
    border-left: none;

}
.bottom-helper-panel .maincontent > ul > li > a{
    color: WHITE;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
.bottom-helper-panel .maincontent > ul > li > a{
    color: WHITE;
}

.sg-toastr{}
.sg-helper-1{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 420px;

    background: WHITE;
    border-radius:calc( var(--radius) + 15px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.26);
    z-index: 30;
}
.sg-helper-1 .container-fluid,
.sg-helper-1 .container-fluid .row,
.sg-helper-1 .container-fluid .row > div{
    height: 100%;
}
.sg-helper-1 .logo-area{
    height: 100%;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.sg-helper-1 i{
    font-size: 3em;
}
.sg-helper-1 span{
    font-size: 0.9em;
    margin-top: 5px;
    font-weight: 500;
}
.sg-helper-1 .content-area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #eee;
    padding: 12px 10px;
}
.sg-helper-1 .content-area > *{
    width: 100%;
    margin-top: 10px;
}
.sg-helper-1 .content-area .sender{
    border-radius: 30px;
    border: 1px solid #ddd;
    width: 100%;
    padding: 5px 12px;
    background: #fff;
    font-weight: 600;
    color: var(--pagefont_clr);
}
.sg-helper-1 .content-area .sender img{
    max-height: 2em;
    display: inline-flex;
}


.sg-helper-2{
    position: fixed;
    right: 25px;
    bottom: 30px;
    z-index: 30;
    width: 320px;
    transition: all 0.2s ease-in-out;
    transform: translateY(0);
}
/*.helper-rows .sg-helper-2:first-child{*/
/*    bottom: 110px;*/
/*}*/
.sg-helper-2:hover{
    transform: translateY(-10px);
}
.sg-helper-2 .head{
    cursor: pointer;
    position: relative;
    height: 70px;
    width: 100%;
    border-radius: calc(var(--radius) + 70px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    padding: 13px;
    color: rgb(0, 128, 105);
    display: flex;
    align-items: center;
    justify-content: start;
    background-blend-mode: luminosity;
    overflow: hidden;
}
.sg-helper-2 .head > *{
    position: relative;
    z-index: 5;
}
.sg-helper-2 .head::after{
    content:'';
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.5;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
     position: absolute;
    z-index: 0;
}

.sg-helper-2 .head .profile-img{
    width:  50px;
    height: 50px;
    border-radius: 160px;
    border: 2px solid rgb(0, 128, 105);
    padding: 8px;
    background: WHITE;
}
.sg-helper-2 .head .profile-desc{
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 10px;
    line-height: 1.2em;
}
.sg-helper-2 .head .profile-desc p{
    color: rgb(0, 128, 105);
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 300;
}
.sg-helper-2 .head .profile-desc p strong{
    font-weight: 700;
}
.sg-helper-2 .head .profile-desc p small{
    font-weight: 300;
}
.sg-helper-2 .body{}
.sg-helper-2 .writer{}


header.mobile{
    position: fixed;
    left: 0;
    width: 100svw;
    z-index: 200;
    background: WHITE;
}
.open-menu header.mobile{
    background: var(--type1SubMenuBackB);
}
header.mobile a.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
header.mobile a.logo img{
    max-width: 210px;
}
header.mobile .menu-toggler {
    transition: all 0.8s ease-in-out;
    width: 40px;
    height: 20px;
    position: relative;
    display: block;
}
header.mobile .menu-toggler span {
    width: 30px;
    height: 3px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    z-index: 20;
    background: var(--clr_dark_n);
    transition: all 0.5s ease-in-out;
    transform-origin: 50% 50%;
}
header.mobile .menu-toggler span:first-child {
    top: 2px;
}
header.mobile .menu-toggler span:nth-child(2) {
    top: 8px;
}

header.mobile .menu-toggler span:nth-child(3) {
    top: 14px;
}
header.mobile .menu-toggler.opened span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}
header.mobile .menu-toggler.opened span:nth-child(2) {
    top: 12px;
    width: 5px;
}
header.mobile .menu-toggler.opened span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
}


nav.mobile{
    display: flex;
    align-items: start;
    justify-content: start;
    height: calc(100svh - 80px);
    z-index: 190;
    position: fixed;
    left: 0;
    top: 120px;
    width: 100svw;

    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    background: #fff;
    background: var(--type1SubMenuBackB);
    overflow-y: auto;
    overflow-x: hidden;

}
nav.mobile.opened{
    top: 80px;
    opacity: 1;
    visibility: visible;
}

nav.mobile .content-container{
    height: fit-content !important;
    padding-bottom: 30px !important;
}

nav.mobile .accordion{
    border:none !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
nav.mobile .accordion .card{
    margin-top: 20px;
    border:none !important;
    background: transparent;
    display: inline-flex;
    width: 100%;
}
nav.mobile .accordion .card.w-sm{
    width: 48%;

}
nav.mobile .accordion .card .card-header{
    background: WHITE;
    color: var(--clr_dark_n);
    border-radius: calc(var(--radius) + 15px);
    border-bottom: none !important;
}
nav.mobile .accordion .card .card-header a.collapsed{
    color: var(--clr_dark_n);
}
nav.mobile .accordion .card .card-header a{
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    text-align: start;
    color: var(--clr_promo_3b);
    font-weight: 600;
    font-size: 1.2em;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 30px;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
nav.mobile .accordion .card .card-header a.collapsed::after{
    content: "\2b";
}
nav.mobile .accordion .card .card-header a::after{
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    content: "\f068";
    width: 30px;
    height: 100%;
    right: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}


nav.mobile .card-body h4{
    font-size: 1em;
    font-weight: 500;
}
nav.mobile .card-body .sub-menu-list{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
}
nav.mobile .card-body .sub-menu-list li{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 12px;

}
nav.mobile .card-body .sub-menu-list li:last-child{
    border-bottom: none !important;
}
nav.mobile .card-body .sub-menu-list li a{
    font-size: 1em;
    font-weight: 400;
    color: var(--pagefont_clr);
    padding: 8px 13px;
}

.nav-pill{
    height: 55px;
    background-color: WHITE;
    color: var(--clr_dark_n);
    border-radius: calc(var(--radius) + 15px);
    border-bottom: none !important;
    margin-top: 20px;
    padding: 15px;
}
.nav-pill.bg-promo-1{
    background: var(--clr_promo_1);
}
.nav-pill.bg-promo-2{
    background: var(--clr_promo_2);
}
.nav-pill.bg-promo-3{
    background: var(--clr_promo_3);
}
.nav-pill.bg-dark{
    background: var(--clr_dark_n) !important;
}
.nav-pill a {
    width: 100%;
    white-space: nowrap;
}
.nav-pill .socials{
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    height: 100%;
}
.nav-pill .socials li{
    width: 25%;
    height: 100%;
    flex: 1 1 25%;
    border-right: 1px solid #efefef;
    display: inline-flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
}
.nav-pill .socials li:last-child{
    border-right: none !important;
}
.nav-pill .socials li span,
.nav-pill .socials li a
{
    text-align: center;
    color: var(--clr_dark_n);
}
.nav-pill .socials li a i{
    font-size: 1.2em;
}
.nav-pill.call-center{
    font-size: 1.5em;
    font-weight: 600;
}

.no-header{
    position: fixed;
    left:0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.no-header a.logo{}
.no-header a.logo img{
    width: 260px;
}

@media(max-width: 1300px){

}
@media (min-width: 1700px) and (max-width: 1850px) {
}
@media (max-width: 1700px) and (min-width: 1500px) {
}
@media (max-width: 1550px) and (min-width: 1280px) {
}
@media (max-width: 1280px) and (min-width: 991px) {
}
@media (max-width: 991px) and (min-width: 720px) {
}
@media (max-width: 720px) and (min-width: 560px) {

}
@media (max-width: 560px) {

}
/*Max Treshoolds*/

@media (max-width: 1700px){

}
@media (max-width: 1600px){

}
@media (max-width: 1500px){

}
@media (max-width: 1400px){
    header.desctop > .content-container{
        width: 100svw !important;
    }
    header.desctop .list-area > ul > li > a{
        padding: 5px 10px;
    }
}
@media (max-width: 1376px){

    header.desctop .content-container{
        width: 90svw !important;
    }
}
@media (max-width: 1279px){

}
@media (max-width: 1180px){
    header.desctop{
        display: none !important;
    }
    header.mobile{
        display: flex !important;
    }
}
@media (max-width: 991px){
    .sg-helper-2{
        width:80svw;
        right: 10svw !important;
    }
}
@media (max-width: 768px){}
@media (max-width: 560px){}
/*Min Treshoolds*/

@media (min-width: 1700px){}
@media (min-width: 1500px){

}
@media (min-width: 1281px){

}
@media (min-width: 1180px){
    header.desctop{
        display: flex !important;
    }
    header.mobile{
        display: none !important;
    }
}
@media (min-width: 992px){


}
@media (min-width: 768px){}
@media (min-width: 560px){}