html {
    scroll-behavior: smooth
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    background: #ecf1f7;
}

*,
::after,
::before {
    box-sizing: border-box;
}

a,
a:hover {
    text-decoration: none
}

button {
    border: none;
    padding: 0px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.themeRow {
    width: 100%;
    float: left
}

.themeContainer {
    width: 100%;
    margin: 0 auto;
    max-width: 1296px;
}

.themeContainerFull {
    width: 100%;
}

input,
.form-select {
    outline: none;
}


/* width */
.scrollBarFix::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scrollBarFix::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
.scrollBarFix::-webkit-scrollbar-thumb {
    background: #C4C3C4;
}

/* Handle on hover */
.scrollBarFix::-webkit-scrollbar-thumb:hover {
    background: #838383;
}


ul::-webkit-scrollbar {
    width: 4px;
    border-radius: 0px;
}

ul::-webkit-scrollbar-track {
    background: #1ad5975e;
    border-radius: 0px;
}

ul::-webkit-scrollbar-thumb {
    background: #1da1f0;
    border-radius: 0px;
}

ul::-webkit-scrollbar-thumb:hover {
    background: #c0cfd7;
}

/*general style*/

.navbarHeader {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f2f5f8;
}

.headerInfo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.infoBox img {
    margin-right: 0;
    height: 14px;
}

.infoBox {
    display: flex;
    align-items: center;
    padding: 0;
    border-right: 1px solid #f2f5f8;
    padding-right: 15px;
    padding-left: 15px;
}

.infoBox:last-child {
    margin-right: 0;
}

.infoBox p {
    color: #ffffff;
    font-weight: 400;
    font-size: 13px;
    margin: 0;
}

.infoBox a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #1c2b45;
}

.infoBox a:hover {
    /* color: white; */
}

.infoBox a span {
    font-weight: 600;
}

.infoIcon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-right: 8px;
    background: #f9f9f9;
}

.infoBox.fav a {}

.infoBox.fav a .infoIcon {
    background: #c2eeff;
}

.infoBox.phone a {}

.infoBox.phone a .infoIcon {
    color: #01c267;
}

.infoBox.mail a {}

.infoBox.mail a .infoIcon {
    color: #302a71;
}

.wb-osearch {}

.wb-osearch .orsebtns {}

.infoImg {
    width: 20px;
    height: 30px;
    margin-right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.infoImg.whatsapp {}

.infoImg.email {}

header {
    background: #ffffff;
}

.headerInfoRight {
    display: flex;
    align-items: center;
}

.orderBox.orsebtns {
    background: #f2f5f8;
    padding: 10px 20px;
    display: flex;
    border-radius: 30px;
    margin-left: 15px;
}

div .infoBox:first-child {
    padding-left: 0;
}

.headerInfoLeft .infoBox:last-child {
    border-right: 0;
    padding-right: 0;
}

.headerInfoLeft {
    display: flex;
    align-items: center;
}


.menuContainer {
    width: 100%;
    position: absolute;
    right: 0px;
    left: 0;
    top: 100%;
    background: #f9f9f9;
    display: none;
    padding: 30px 0;
    float: left;
    z-index: 9999;
    max-width: 100%;
    border-top: 1px solid #f2f5f8;
}

.menuContainer.p0 {
    padding: 0;
}

.menuWrapper {
    display: flex;
    justify-content: space-between;
    padding: 0px 0;
    align-items: center;
}

.menuWrapper>ul {
    width: 100%;
    float: left;
    display: flex;
    justify-content: flex-start;
}

.menuWrapper>ul>li {
    float: left;
    margin-left: 25px;
    text-align: center;
}

.menuWrapper>ul>li>a {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #444444;
    font-weight: 600;
    display: flex;
    justify-content: center;
    padding: 0px 0 25px 0;
    position: relative;
    transition: all .3s ease;
}

.menuWrapper>ul>li:first-child>a {
    padding-left: 0;
}

.menuIcon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 8px;
    margin-right: 10px;
}

.menuIcon>img {}

.menuWrapper>ul>li>a:hover {
    color: #302a71;
    transition: all .3s ease;
}

.menuWrapper>ul>li>a:hover:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    background: #302a71;
    opacity: 0;
}

.menuWrapper>ul>li>a>img {
    margin-left: 6px;
}

.menuWrapper ul li ul {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    max-width: 1296px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    /* overflow-y: scroll; */
    flex-wrap: wrap;
}

.menuWrapper ul li:hover .menuContainer {
    display: flex;
}

.menuWrapper ul li ul.institutionalMenu {
    width: 100%;
    overflow: unset;
}

.menuWrapper ul li ul.institutionalMenu li {
    width: calc(100% * 1/4 - 9px);
    display: flex;
    justify-content: space-between;
    float: left;
}

.menuWrapper ul li ul.institutionalMenu li a {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    border: 0px solid #8187a1;
    border-radius: 6px;
    padding: 0;
    /* background-color: #707390; */
}

.menuWrapper ul li ul.institutionalMenu li a:hover span {
    color: #302a71;
}

.menuWrapper ul li ul.institutionalMenu li a:hover .institutionalIcon img {}

.menuWrapper ul li ul.institutionalMenu li a span {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 22px;
    color: #474747;
    text-align: left;
}

.menuWrapper ul li ul.institutionalMenu li a span strong {
    clear: left;
    margin-left: 0;
    font-weight: 400;
}

.menuWrapper ul li ul.servicesMenu {
    gap: 15px;
}

.menuWrapper ul li ul.servicesMenu .menuIcon {
    margin-right: 0;
    margin-bottom: 15px;
}

.menuWrapper ul li ul.institutionalMenu li a strong {
    margin-left: 4px;
}

.menuWrapper ul li ul.servicesMenu li {
    border-radius: 13px;
    width: 100%;
}

.menuWrapper ul li ul.servicesMenu li a {
    background: #e3eaf1;
    transition: .3s ease;
    width: calc(100% - 0px);
    text-align: center;
    padding: 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 6px;
    font-size: 16px;
    color: #302a71;
    font-weight: 600;
    position: relative;
    line-height: 23px;
}

.menuWrapper ul li ul.servicesMenu li a span {
    margin-right: 0;
    font-weight: 400;
}

.menuWrapper ul li ul.servicesMenu li a:hover {
    box-shadow: 1px 1px 11px 7px #0000002b;
}

.menuWrapper ul li ul.servicesMenu {
    padding: 20px 0;
}

/*.menuWrapper ul li ul.servicesMenu li a.instagram{background-color: var(--colorInstagram);}
.menuWrapper ul li ul.servicesMenu li a.twitter{background-color: var(--colorTwitter);}
.menuWrapper ul li ul.servicesMenu li a.youtube{background-color: var(--colorYoutube);}
.menuWrapper ul li ul.servicesMenu li a.facebook{background-color: var(--colorFacebook);}
.menuWrapper ul li ul.servicesMenu li a.tiktok{background-color: var(--colorTiktok);}
.menuWrapper ul li ul.servicesMenu li a.spotify{background-color: var(--colorSpotify);}
.menuWrapper ul li ul.servicesMenu li a.tinder{background-color: var(--colorTinder);}*/
.menuWrapper ul li ul.menuIcon {}

.menuWrapper ul li ul.toolsMenu li {
    display: flex;
    width: calc(100% - 0px);
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    flex-wrap: wrap;
    align-items: flex-start;
}

.menuWrapper ul li ul.toolsMenu li ul {
    flex-direction: row;
    padding: 0;
    gap: 0px;
    overflow: unset;
    position: relative;
    width: calc(100% * 1/5 - 0px);
    margin: 0 0 0px 0;
}

.menuWrapper ul li ul.toolsMenu li ul>span {
    font-size: 18px;
    color: #444444;
    font-weight: 600;
    padding-left: 0;
    text-align: left;
}

.menuWrapper ul li ul.toolsMenu li a {
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 0;
    padding: 3px 0px;
    background: white;
    font-size: 16px;
    font-weight: 400;
    width: calc(100% - 10px);
    color: #444444;
    transition: .3s ease;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none !important;
    text-align: left;
}

.menuWrapper ul li ul.toolsMenu li a:hover {
    color: #302a71 !important;
    border-radius: 6px;
}

.menuWrapper ul li ul.toolsMenu li a span {
    font-weight: 400;
    margin-right: 5px;
}

.institutionalIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    float: left;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #ffffff;
    border-radius: 8px;
}

.institutionalIcon img {}

.servicesIcon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: url('../img/shape.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    font-size: 24px;
    background: #6e7fff;
    border-radius: 100%;
    color: white;
}

.servicesIcon img {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

.menuIcon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuIcon img {
    width: 15px;
    height: 15px;
}

.toolsMenu .menuIcon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 8px;
    background: white;
}

.toolsMenu .menuIcon img {
    width: auto;
    height: auto;
}

.menuWrapper ul li ul.toolsMenu {
    overflow: unset;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* .menuWrapper ul li ul.toolsMenu li ul.instagram .menuIcon{background: #e1306c;}
.menuWrapper ul li ul.toolsMenu li ul.twitter .menuIcon{background: #1da1f0;}
.menuWrapper ul li ul.toolsMenu li ul.facebook .menuIcon{background: #1873ea;}
.menuWrapper ul li ul.toolsMenu li ul.youtube .menuIcon{background: #ff0000;}
.menuWrapper ul li ul.toolsMenu li ul.tiktok .menuIcon{background: #101626;} */

.menuWrapper ul li ul.toolsMenu li ul.instagram {}

.menuWrapper ul li ul.toolsMenu li ul.twitter {}

.menuWrapper ul li ul.toolsMenu li ul.facebook {}

.menuWrapper ul li ul.toolsMenu li ul.youtube {}

.menuWrapper ul li ul.toolsMenu li ul.tiktok {}

.menuWrapper>ul>li:first-child {
    margin-left: 0;
}

.menuWrapper>ul>li>a:hover .menuIcon img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(72%) saturate(3026%) hue-rotate(285deg) brightness(86%) contrast(114%);
    transition: all .3s ease;
}

@-webkit-keyframes scale-up-ver-center {
    0% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes scale-up-ver-center {
    0% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

/* FOOTER */
.footer {
    background: #06123e;
    padding: 50px 0 0px 0;
}

.foot-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px;
}

.footImg {
    text-align: center;
    padding-top: 12px;
    margin-top: 20px;
    border-top: 1px solid rgba(var(--lsdb), .05);
}

.footImg img {
    height: 50px;
    max-width: 100%;
    width: auto;
}

.footer .start {
    align-self: flex-start;
}

.footer .start img {
    height: 48px;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(95%) sepia(100%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
}

.footer .start p {
    margin-bottom: 10px;
    color: #fff;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
}

.footer .start .social-action {
    display: flex;
    align-items: center;
}

.footer .start .social-action a {
    margin-right: 8px;
}

.footer .start .social-action a i {
    color: rgba(var(--txtall), .6);
    font-size: 22px;
    transition: .2s;
}

.footer .start .social-action a:hover i {
    color: rgba(var(--txtall));
}

.fdef {
    height: 100%;
}

.footer .fdef .title {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.fdefIcon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #280f50;
    border-radius: 8px;
}

.fdefIcon img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(59%) saturate(5199%) hue-rotate(289deg) brightness(120%) contrast(105%);
}

.footer .fdef ul {
    padding: 0;
    margin: 0;
    position: relative;
    height: calc(100% - 15px);
}

.footer .fdef>ul li a {
    list-style: none;
    margin-bottom: 10px;
    font-size: 13px;
    color: #a7afd0;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.footer .fdef>ul li a {
    padding-left: 16px;
    position: relative;
    color: #ffffff;
    line-height: 25px;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 17px;
}

.footer .fdef>ul li:hover>a {
    color: #fff;
}

.footer .fdef>ul li>a>img {
    position: relative;
    top: -2px;
}

.footer .fdef>ul>li>a:before {
    content: "";
    background: #780778;
    border-radius: 100%;
    width: 8px;
    height: 8px;
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
}

.footer .fdef>ul>li:hover>a:before {
    /* background: url('../img/circle-w.png'); */
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(139deg) brightness(103%) contrast(102%);
}

.footer .fdef>ul li a:after {
    content: "";
    /*background: url('../img/menuarrow.png');*/
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    width: 14px;
    height: 13px;
    display: block;
    position: absolute;
    top: calc(50% - 6.5px);
    right: -22px;
    transition: .1s ease;
}

.footer .fdef>ul li a.noSubMenu:after {
    display: none;
}

.footer .fdef>ul li:hover a:after {
    transform: rotate(180deg);
}

.footer .fdef>ul li ul li a:after {
    display: none !important;
}

.footerInfo {}

.footerInfo ul {}

.footerInfo ul li {
    display: flex;
    margin-bottom: 15px;
}

.footerInfo ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerInfo ul li a img {}

.footerInfo ul li a span {
    color: white;
    display: flex;
    flex-direction: column;
}

.footerInfo ul li a strong {}

.footerInfo>span {
    color: #828bad;
    font-size: 16px;
    display: flex;
    margin-bottom: 30px;
}

/*footer acilan menu*/
.footer .fdef ul {}

.footer .fdef>ul li {
    margin-bottom: 5px;
}

.footer .fdef>ul li:hover {
    background: #280f50;
}

.footer .fdef>ul li:hover:after {}

.footer .fdef>ul li ul {
    display: none;
    overflow: auto;
    height: 100%;
    position: absolute;
    background: #280f50;
    left: calc(50% + 50px);
    min-width: 70%;
    z-index: 9999;
    top: 0;
    flex-direction: column;
    padding: 10px;
}

.footer .fdef>ul li:hover ul {
    display: flex;
}

.footer .fdef>ul li:hover ul li {
    display: flex;
}

.footer .fdef>ul li ul li a {
    display: flex;
    padding: 0;
    font-size: 15px;
    margin-bottom: 0px;
}

.footer .fdef>ul li ul li a:hover {
    color: #fff;
}

/*footer acilan menu*/

#copyright {
    border-top: 1px solid #222637;
    width: 100%;
    display: flex;
    margin-top: 30px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.copyright span {
    color: #828bad;
    font-size: 16px;
    font-weight: 400;
}

.copyImg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialMedia {
    display: flex;
}

.socialMedia ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.socialMedia ul li {}

.socialMedia ul li a {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.socialMedia ul li a.instagram {
    background: #e1306c;
}

.socialMedia ul li a.twitter {
    background: #00acee;
}

.socialMedia ul li a.youtube {
    background: #ff0000;
}

.support-bottom a.fcont {
    background: #039be6;
    border-radius: 12px;
    padding: 12px 30px;
    margin: 0px;
}

.socialMedia ul li a.contact {
    background: #780778;
}

.socialMedia ul li a i {
    color: white;
    font-size: 24px;
}

.socialMedia ul li a:hover {
    box-shadow: 1px 1px 9px 3px #ffffff47;
}

.announcement {
    border-radius: 60px;
    float: left;
    clear: left;
    position: relative;
    padding: 0 0 0 0px;
    margin-bottom: 0px;
    display: flex;
}

.announcement>img {
    position: absolute;
    left: -10px;
    top: -40px;
}

.announcement>span {
    color: #34c7ff;
    font-size: 26px;
    font-weight: 500;
    display: flex;
    line-height: 45px;
    letter-spacing: 0;
}

.announcement>span:before {
    content: "";
    width: 40px;
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    top: 16px;
    display: none;
}

.bannerArea {
    width: 100%;
    background: url(../img/heroBgr.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top;
    padding-bottom: 0px;
    border-radius: 20px;
}

.fast-flex {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 0 0px 0;
}

.fast-first p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.fast-sec {
    width: 100%;
    margin-left: 0px;
    margin-top: 90px;
    background: white;
    padding: 29px 18px 26px 18px;
    margin-bottom: -60px;
    border-radius: 10px;
    z-index: 9;
    display: block;
    position: relative;
    /* box-shadow: 0px 3px 13px 4px #b5abab0f; */
}


.bannerImage {
    position: relative;
    display: flex;
    width: 100%;
    text-align: right;
    margin-bottom: 0;
}

.bannerImage>img {
    width: 100%;
}


.fast-box-area {
    display: flex;
    margin-top: 45px;
    margin-bottom: 40px;
}

.fast-box {
    color: #ffffff;
    background: #ffffff;
    padding: 10px 30px;
    margin-bottom: 10px;
    border-radius: 40px;
    margin: 0 10px 0 0;
    font-size: 18px;
    cursor: pointer;
    transition: .2s;
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    height: 45px;
}

.fast-box>a {
    display: flex;
    align-items: center;
    color: white;
}

.fast-box>a>img {
    height: 14px;
}

.fast-box.hizmetlerimiz {
    background: #34c7ff;
}

.fast-box.ucretsizaraclar {
    background: none;
    border: 1px solid white;
}

.fast-box span img {}

.fast-box:hover {
    position: relative;
    /* box-shadow: 0px 13px 20px #ffffff40; */
    top: -5px;
}

.fast-box:hover i {
    transform: rotate(360deg);
}

.fast-box i {
    transition: .3s;
}

.fast-box span {
    font-weight: 500;
    font-size: 14px;
    margin-left: 10px;
    position: relative;
    top: 0px;
    color: #ffffff;
}

.fast-box span strong {
    font-weight: 600;
}

.fast-box.secondBox {
    color: #444444;
    background: white;
}

.fast-box.secondBox span {
    color: #444444;
}

.fast-flex {
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 150px 0 160px 0px;
    justify-content: space-between;
    margin-bottom: -12rem;
}

.fast-first {
    width: 100%;
    max-width: 550px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    z-index: 9;
    float: right;
    position: relative;
    padding-left: 80px;
}

.fast-first>span {
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
}

.fast-first h1 {
    float: left;
    margin-bottom: 40px;
    font-size: 42px;
    line-height: 130%;
    color: #ffffff;
    position: relative;
    width: auto;
    font-weight: 400;
    letter-spacing: 0;
}

.fast-first h1:after {
    content: "";
    /*background: url(../img/line.png) center no-repeat;*/
    position: absolute;
    right: 80px;
    bottom: -14px;
    width: 250px;
    height: 21px;
    background-size: contain;
}

.fast-first h1 strong {
    letter-spacing: -3px;
}

.subTitlefk span {
    font-size: 24px;
    color: #fff;
    font-weight: 500
}

.fast-first h1 span {
    padding-top: 0;
    display: inline-block;
    font-weight: 800;
    font-size: 48px;
    color: #fff;
    letter-spacing: 0;
}

.fast-first p {
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0px;
}

.fast-sec {
    width: 100%;
    margin-left: 0;
    margin-top: 90px;
    background: #fff;
    padding: 29px 18px 26px;
    margin-bottom: -60px;
    border-radius: 10px;
    z-index: 9;
    display: block;
    position: relative
}

.fast-two {
    display: flex;
    position: absolute;
    margin-top: 0;
    float: right;
    bottom: 0;
    z-index: 0;
    width: 37%;
    justify-content: flex-end;
}



#offerWe {
    margin: 0px;
    background: white;
    padding: 100px 0;
}

.offerWrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.offerImg {
    max-width: 600px;
    /* background: url(../img/shadows.png); */
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    float: left;
}

.offerImg img {
    width: 100%;
}

.offerDescription {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
}

.offerTitle {
    display: flex;
    flex-direction: column;
    width: 100%;
    float: left;
}

.offerTitle p {
    font-size: 22px;
    margin: 0px 0px 30px 0px;
    max-height: 100px;
    overflow: hidden;
    font-weight: 400;
    line-height: 24px;
    color: #212529;
}

.offerTitle h2 {
    font-size: 40px;
    color: #302a71;
    margin: 0 0 20px 0;
    position: relative;
    font-weight: 600;
    line-height: 42px;
}

.offerTitle h2 span {}

.offerTitle h2:before {
    content: "";
    height: 2px;
    width: 48px;
    background: #63677d;
    display: block;
    border-radius: 20px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: none;
}

.offerTitle h2:after {
    content: "";
    height: 8px;
    width: 28px;
    background: #63677d;
    display: block;
    border-radius: 40px;
    margin-left: 60px;
    position: absolute;
    bottom: 0px;
    display: none;
}

.offerTitle>span {
    font-size: 20px;
    color: #9094aa;
    line-height: 26px;
    font-weight: 400;
}

.offerTitle {}

.offerBox {
    width: calc(50% - 10px);
    float: left;
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 0;
}

.offerIcon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    min-height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2cbf8;
    color: #ffffff;
    margin-bottom: 0;
    font-size: 28px;
    margin-right: 10px;
}

.offerIcon img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(2%) saturate(5%) hue-rotate(12deg) brightness(96%) contrast(91%);
}

.offerBox p {
    margin: 0px;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}

.offerBox p span {
    font-weight: 600;
    font-size: 28px;
    float: left;
    clear: left;
    line-height: 25px;
}

.offerBoxWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 50px;
    gap: 30px 20px;
}

.offerBoxWrapper .offerBox {
    display: flex;
    align-items: center;
}

.offerBoxWrapper .offerBox:first-child {}

.offerBoxWrapper .offerBox:nth-child(2) {
    /* display: flex; */
}

.seoWrapper {
    background: none;
    max-height: 380px;
    overflow: auto;
    padding: 0 0 20px 0;
}

.seoWrapper h2 {
    font-size: 26px;
    color: #302a71;
    font-weight: 500;
    margin-bottom: 20px;
}

.seoWrapper p {
    font-size: 18px;
    color: #06123e;
    margin-bottom: 12px;
    line-height: 23px;
}

.seoWrapper p strong {
    font-size: 22px;
}

.pad20bgw {
    background-color: #fff;
    padding: 20px 20px 20px 20px;
    position: relative;
    border-radius: 30px;
}

.pad20bgw:after {
    content: "";
    width: 100%;
    height: 100px;
    /* background: linear-gradient(0deg, rgb(255 255 255) 0%, rgba(255, 255, 255, 0) 100%); */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

/*menu-toggler*/
.menu-toggler {
    display: block;
    width: 30px;
    height: 26px;
    position: relative;
    cursor: pointer;
    margin-left: auto;
}

.menu-toggler {
    display: none;
}

.menu-toggler .line-1 {
    width: 30px;
    height: 6px;
    position: absolute;
    border-radius: 12px;
    background: var(--color1);
    top: 0;
    left: 0;
    transition: .3s;
}

.menu-toggler .line-2 {
    width: 30px;
    height: 6px;
    border-radius: 12px;
    background: var(--color1);
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    transition: .3s;
}

.menu-toggler .line-3 {
    width: 30px;
    height: 6px;
    border-radius: 12px;
    background: var(--color1);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}

.menu-toggler.active .line-1 {
    transform: rotate(45deg);
    top: calc(50% - 3px);
}

.menu-toggler.active .line-2 {
    visibility: hidden;
    opacity: 0;
}

.menu-toggler.active .line-3 {
    transform: rotate(-45deg);
    bottom: calc(50% - 3px);
}

@media (max-width: 991px) {
    .menu-toggler {
        display: block;
    }

    .menu-toggler.active .line-1,
    .menu-toggler.active .line-2,
    .menu-toggler.active .line-3 {
        background: #302a71;
    }

    .menu-toggler .line-1,
    .menu-toggler .line-2,
    .menu-toggler .line-3 {
        background: #302a71;
    }
}

/*menu-toggler*/

.most-popular,
.SideServices {
    padding: 20px;
    border-radius: 5px;
    background: white;
}

.sideIcon {
    position: absolute;
    left: 5px;
    top: 41%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #4c5473;
    display: flex;
}

.sideIcon img {}

.sideServiceList .item .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-content .post-body p {
    color: #333;
}

.post-content .post-body p strong {
    font-size: 26px;
    font-weight: 700;
}

.widgetsWrapper {
    background: #c500e0;
    width: 100%;
    padding: 30px 0;
}

.wigetsArea {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.widgetsBox {
    display: flex;
    align-items: center;
}

.widgetsBox img {
    margin-right: 0;
}

.widgetsBox span {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    margin-left: 25px;
}

.widgetsBox span strong {
    font-size: 20px;
}

.sidebarContact {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.sidebarContact .footerInfo {}

.sidebarContact .footerInfo h3 {
    color: #c500e0;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f4f4;
    margin-bottom: 20px;
}

.sidebarContact .footerInfo ul li a {}

.sidebarContact .footerInfo ul li a span {
    color: #4c5473;
}

.contactTitle {
    width: 100%;
    margin-bottom: 25px;
}

.contactTitle h3 {
    font-size: 20px;
    color: #4c5473;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f4;
    text-transform: uppercase;
}

.inputIcon {
    position: absolute;
    left: 14px;
    top: 17px;
}

.inputIcon img {}

.inputWithIcon {
    position: relative;
}

.inputWithIcon input {
    padding-left: 45px;
    border-radius: 12px;
    border: 1px solid #c3cddb;
}

.inputWithIcon textarea {
    border-radius: 12px;
    border: 1px solid #c3cddb;
}

.post-content .post-body h1 {
    color: #333;
    margin-top: 20px;
}

/*kategori üst splide hizmetList*/
.obj-tab {
    list-style: none;
    height: 100%;
    margin: 0px 15px 0 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transform: translate3d(0, 0, 0) scale(1.000000005);
    transition: transform 150ms ease, opacity 200ms ease;
    border: 0px solid #fff0;
    border-radius: 4px;
    /* opacity: .5; */
}

.obj-tab.active {
    opacity: 1;
    background: none;
}

.obj-tab:hover {
    opacity: 0.8;
}

.obj-tablink {
    font-weight: 500;
    text-decoration: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    color: #1c2b45 !important;
    z-index: 999;
    font-size: 16px;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    background: #f2f5f8;
}

.active.obj-tablink {
    background: #1c2b45;
    color: white !important;
}

.obj-tab.active .obj-tablink .tabIcon {
    background: #302a71;
}

.obj-tabcontent {
    position: relative;
    display: flex;
    padding: 10px;
    z-index: 50;
}

.obj-tabcontent.specPad {
    padding: 25px 0px 25px 0px !important;
    border-top: 1px solid #e8e8e9;
    margin-top: 25px;
}

.card-body.p0 {
    padding: 0px !important;
}

.card.specStep {
    border: none !important;
    border-radius: 10px;
    background: none;
}

.obj-tabindicator {
    width: 100%;
    height: 100%;
    background: var(--color1);
    position: absolute;
    display: block;
    border-radius: 12px;
    z-index: 1;
    transition: all 0.3s ease;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    color: #ffffff;
}

.active .obj-tabindicator {
    opacity: 1;
    background: none;
}

.iconBox {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    color: #ffffff;
    border-radius: 3px;
    margin-right: 10px;
    border-radius: 12px;
    /* box-shadow: 1px 1px 13px 5px #55758f57; */
}

.iconBox i {
    color: #1c2b45;
}

.active.obj-tablink i {
    color: white;
}

.iconBox.ucresiz {
    background: #55758f;
}

.hizmetList .splide__pagination {
    bottom: -1.5em;
}

.hizmetList {
    margin-bottom: 40px;
}

/*comment area*/

.tocommentArea {
    padding: 20px 0;
    float: left;
    width: 100%;
}

.buyWithCommentArea .tocommentArea {
    padding: 10px 0;
}

.commentbarsection {
    width: 100%;
    overflow: hidden;
    background: url('../img/comments.png') top/cover no-repeat
}

.commentbarsection .area {
    float: left;
    width: 100%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 50px 0;
    position: relative
}

.commentbarsection .bcicon {
    background: rgba(var(--cl1));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: calc(50% - 40px);
    text-align: center;
    line-height: 80px;
    color: #fff;
    font-size: 30px
}

.commentcreate .form {
    display: flex;
    flex-direction: column;
}

.commentcreate .form,
.commentcreate .form .input input {
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 30px
}

.commentbarsection .commentcreate h4 {
    float: left;
    width: 100%;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 19px
}

.commentbarsection .commentcreate {
    float: left;
    width: 100%
}

.commentcreate .form h5 {
    float: left;
    width: 100%;
    color: #444;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    margin-bottom: 0;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e5f0;
    text-transform: uppercase;
}

.commentcreate .form h5::before {
    content: "";
    background: url(../img/icon/commentcreateicon.svg) 0 0/contain no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 3px
}

.commentcreate .form .input {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 12px
}

.commentcreate .form .input input {
    border: 1px solid #b9c4d5;
    padding: 15px 15px 15px 45px;
    color: #444;
    font-weight: 500;
    border-radius: 10px;
}

.commentcreate .form .input textarea,
.commentcreate .puan {
    border-radius: 8px;
    float: left;
    width: 100%;
    background: #fff;
    font-weight: 500
}

.commentcreate .form .input input:placeholder,
.commentcreate .form .input textarea:placeholder {
    color: #444
}

.commentcreate .form .input textarea {
    border: 1px solid #d0d8e8;
    padding: 13px 15px 13px 45px;
    color: #444;
    min-height: 160px;
    max-height: 230px;
    margin-bottom: 10px
}

.commentcreate .form .input input::placeholder {
    color: #211e20;
    font-size: 15px
}

.commentcreate .form .input.user::before {
    content: "\f21b";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 20px;
    margin-right: 12px;
    color: #d0d8e8;
    left: 17px;
    top: 12px;
    position: absolute
}

.commentcreate .form .input.message::before,
.commentcreate .puan::before {
    font-family: "Font Awesome 5 Free";
    font-size: 17px;
    margin-right: 12px;
    color: #d0d8e8;
    left: 17px;
    top: 14px;
    font-weight: 600;
    position: absolute
}

.commentcreate .form .input.message::before {
    content: "\f086"
}

.commentcreate .form button {
    float: right;
    width: 100%;
    max-width: 150px;
    background: #302a71;
    border: 0;
    color: #fff;
    border-radius: 8px;
    padding: 13px 20px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: .6s;
    text-align: center;
    outline: 0;
    box-shadow: none;
}

.commentcreate .form button::after {
    content: "\f178";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 20px;
    margin-right: 12px;
    color: #fff;
    right: 30px;
    position: absolute;
    display: none
}

.commentcreate .form button:hover {
    background: #652fdd;
}

.commentcreate .puan {
    border: 1px solid #d0d8e8;
    padding: 15px 15px 15px 45px;
    color: #211e20
}

.commentcreate .puan::before {
    content: "\f005"
}

.rating label {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer
}

.rating label:last-child {
    position: static
}

.rating label:first-child {
    z-index: 5
}

.rating label:nth-child(2) {
    z-index: 4
}

.rating label:nth-child(3) {
    z-index: 3
}

.rating label:nth-child(4) {
    z-index: 2
}

.rating label:nth-child(5) {
    z-index: 1
}

.rating label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.rating label .icon {
    float: left;
    color: transparent;
    margin-left: 5px;
    cursor: pointer
}

.rating label:last-child .icon {
    color: #b9c4d5;
    cursor: pointer
}

.rating:hover label:hover input~.icon,
.rating:not(:hover) label input:checked~.icon {
    color: #ffa133;
    cursor: pointer
}

.rating {
    display: inline-block;
    position: relative;
    float: right;
    font-size: 19px;
    line-height: 17px;
    margin-top: 2px
}

.commentlist {
    float: right;
    width: 100%;
    padding-left: 0;
    max-height: 420px;
    overflow: hidden;
    overflow-y: scroll;
    padding-right: 15px;
    background: white;
    padding: 30px;
    border-radius: 30px;
    margin-top: 20px;
}

.commentitem h6 {
    font-weight: 600;
}

.hdtop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdtop .user {}

.hdtop .user .info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.commentitem {
    width: 100%;
    border-bottom: 1px solid #eaebec;
    margin-bottom: 20px;
}

.commentitem p {
    margin-bottom: 20px;
}

.starlist {}

.starlist i {
    color: #dddada;
}

.starlist i.active {
    color: #ffa133;
}

/* width */
.commentlist::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.commentlist::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
.commentlist::-webkit-scrollbar-thumb {
    background: #ffa133;
}

/* Handle on hover */
.commentlist::-webkit-scrollbar-thumb:hover {
    background: #ffa133;
}

/*comment area finished*/

.orderIcon {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eaebec;
    padding-bottom: 25px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.orderTitle {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.orderTitle h2,
.firstcont .step h2 {
    font-weight: 600;
    color: #4c5473;
    line-height: 20px;
    font-size: 20px;
}

.orderTitle p,
.firstcont .step p {
    margin-bottom: 0;
    font-size: 16px;
    color: #4c5473;
    line-height: 24px;
    padding-left: 2px;
}

.orderIcon img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(0%) saturate(0%) hue-rotate(32deg) brightness(96%) contrast(89%);
}

.contactInputIcon {
    position: absolute;
    left: 13px;
    top: calc(50% - 15px);
}

.contactInputIcon img {}

.contactInput {
    width: 100%;
    position: relative;
}

.buyContentBoxBody .form-control {
    height: 60px;
    background: #fff;
    border: 1px solid #b9c4d5;
    border-radius: 10px;
}

.buyWithCommentWrapper label {
    font-size: 18px;
    font-weight: 600;
    color: #4c5473;
}

.buyContentBox {
    padding: 20px 20px;
    background: #ecf1f7;
    border-radius: 20px;
}

.buyContentBoxBody {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.buyContentBoxHeader {
    font-weight: 600;
    font-size: 23px;
}

.buyContentBoxBody .justify-content-center .col-lg-4 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.buyContentBoxBody .btn-orange {
    background: #b9c4d5 !important;
    color: white;
    padding: 8px 20px;
    text-align: left;
    font-weight: 500;
}

.buyContentBoxBody.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coutdownTimer {
    font-weight: 600;
    font-size: 18px;
}

.buyContentBoxHeader {
    text-align: center;
}

.otherServices {
    background: #b9c4d5;
    color: white;
    padding: 15px 30px 15px 15px;
    border-radius: 10px;
    position: relative;
}

.otherServices span {
    color: white;
}

.otherServices:after {
    content: "";
    display: block;
    background: url(../img/arrow-right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 7px;
    height: 11px;
    position: absolute;
    right: 10px;
}

.discountBox {
    width: 100%;
    padding: 25px;
    margin-top: 0px;
    background: #302a71;
    border-radius: 6px
}

.discountBox .icon {
    margin-top: -50px;
    margin-bottom: 30px
}

.discountBox>p {
    font-style: normal;
    font-weight: 400;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    font-size: 20px;
    margin-bottom: 10px;
}

.discountBox .coupon,
.discountBox>strong {
    font-style: normal;
    line-height: 19px;
    text-align: center;
    display: block;
    font-weight: 600;
    font-size: 16px
}

.buyContentOne .discountBox>strong {
    align-items: center;
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.discountBox .coupon {
    padding: 15px 10px;
    background: #fff;
    border-width: 1px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, .06);
    height: 100%;
    color: #877474;
    border-radius: 12px;
}

.discountBox .coupon strong {
    color: #000
}

.discountBox a {
    display: block;
    background: #2acf9b;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 19px 15px;
    transition: .3s
}

.discountBox .row {
    display: flex;
    align-items: center;
}

.srcwell {
    display: flex;
    align-items: center;
    gap: 50px;
}

.osBtn.anibut i {
    display: none;
}

#whyus {
    background: #ecf1f7;
}

.homestep {
    padding-top: 80px;
}

body .serviceList .item .box {
    margin-bottom: 20px;
    border-radius: 12px;
}

body .serviceList .item {
    padding: 40px 25px 25px 25px;
}

body .ns-heading h2,
.ns-heading h2 span {
    color: #302a71;
}

.serviceList .item {
    background-image: url(../img/packetBgs.png) !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.packListArea:before {
    display: none;
}

#packList .splide.is-active .splide__list {
    transform: unset !important;
}

#packList {
    margin-bottom: 0;
}

.packDetail ul li {
    gap: 15px;
    border-color: #f2f5f8;
}

.packTop .title {
    color: #212529;
}

.favPack::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/star.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#faq {
    background-image: url(../img/faqBg.png);
    background-color: #00729e;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#faq .ns-heading h2 {
    color: white;
}

#faq .ns-heading h2 span {
    color: white;
}

#faq .ns-heading p {
    color: white;
}

.faqwell .item {
    position: relative;
}

.faqwell .item .fs-head {
    color: #24283a;
    font-weight: 600;
}

.faqwell .item .fs-content p {
    color: #24283a;
}

.faqwell .item {
    background: #fff;
}

.faqwell .item .fs-content {
    border-color: #006c9b;
}

#faq .fa-add:before,
#faq .fa-plus:before {
    content: "";
    background-image: url(../img/uparrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 7px;
    position: absolute;
    top: 30px;
    right: 30px;
}

#faq .fa-minus:before,
#faq .fa-subtract:before {
    content: "";
    background-image: url(../img/uparrow.png);
    transform: rotate(180deg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 9px;
    height: 7px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.whyus .list .item {
    height: 280px;
}

.whyus .list .item .content {
    text-align: center;
}

.whyus .list .item .content .icon {
    margin: 0 auto 20px auto;
    width: 75px;
    height: 75px;
}

.serviceList .item .serviceName {
    font-size: 20px;
}

.splide.hizmetList {
    visibility: visible;
}

.packListArea .splide__pagination {
    display: none;
}

.fastOrder {
    transform: unset;
}

.fast-two {
    width: 100%;
}

#support {
    background: #200050;
}

#support {
    padding: 20px 0;
}

#button-body {
    background: #06123e;
    border: 1px solid #ffffff38;
}

.titleIcon>img {
    max-width: 75px;
    max-height: 75px;
}

.packBuyBTN {
    box-shadow: none;
}

@media screen and (max-width:1041px) {
    .fast-first{
        padding-left: 30px;
    }
    body .serviceList .item .box {
        margin-bottom: 5px;
    }

    .serviceList .item .serviceName {
        margin-bottom: 0;
    }

    body .serviceList .item {
        padding: 25px 10px 10px 10px;
    }

    body .fast-first h1 {
        line-height: 120%;
        font-size: 26px;
    }
        .serviceList .item .box i {
        font-size: 18px!important;
    }
}

@media screen and (max-width: 768px) {
    .fast-first{
        padding-left: 0;
    }
    #introHome{
        padding: 0 10px;
    }
    body .fast-flex {
        padding: 20px 0 20px 0;
        margin-top: 0;
    }

    body .fast-first:after {
        background: none;
    }

    body .bannerArea {
        background: #4a2292;
    }

    body .fast-first h1 {
        margin-top: 1rem;
    }

    .fast-flex {
        margin-bottom: 0;
    }

    body .homestep {
        padding-top: 40px;
    }

    body .announcement {
        background: none;
        margin: 0;
        padding: 0;
    }

    body .fast-first h1 {
        margin-top: 0;
    }

    body .fast-first p {
        filter: unset;
    }

    body .seoWrapper {
        background: none;
    }

    body .support-bottom a.contact img {
        height: auto;
        margin-bottom: 0;
    }

    body .support-bottom .action a {
        width: 100%;
    }

    #faq .fa-add:before,
    #faq .fa-plus:before,
    #faq .fa-minus:before,
    #faq .fa-subtract:before {
        top: 24px;
        right: 18px;
    }
}

@media screen and (max-width:1041px) and (min-width:768px) {
    body .fast-first {
        align-items: flex-start;
    }

    body .fast-box-area {
        display: flex;
        margin-top: 65px;
        margin-bottom: 70px;
    }

    body .announcement>span {
        padding: 0;
    }
}

#intall {
    padding-top: 40px;
    margin-bottom: 0;
    padding-bottom: 50px;
}

body .path1 {
    display: none;
}

.contactPage,
.blogContent,
.singlePostArea,
#blogList,
#platlist,
#packlist,
.commentArea,
.orderArea,
.mov,
.commentArea,
#page {
    background: #ecf1f7;
}

.pagins,
.hizmetList,
.commentArea {
    margin-bottom: 0;
    padding-bottom: 70px;
}

.hizmetList {
    padding: 25px;
    background: white;
}

.comSend {
    background: #c500e0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px !important;
}

.intall::before {
    background-color: #06123e;
    z-index: 0;
    border-radius: 10px;
}

.intall img.introBG {
    object-position: 0% 13%;
}

.intall .conts .detabox h1 {
    font-weight: 600;
}

.pagins ul li.active a.page-link {
    background: #c500e0 !important;
}

.pagins ul li a.page-link {
    width: 50px;
    height: 50px;
    border-radius: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-item .detail a h3 {
    color: #333;
}

.blog-item .detail a p {
    color: #4c5473;
}

.blog-item .thumb .post-date,
.post-content .post-thumbnail .post-date {
    display: none;
}

.post-content {
    border-radius: 6px;
    padding: 18px;
}

.most-popular .item .title a {
    color: #4c5473;
    font-size: 18px;
}

.most-popular .item .title .post-date {
    color: #4c5473;
    font-size: 16px;
}

.title-heading::before {
    background: #780778;
}

.most-popular .item {
    border: 1px solid #f4f4f4;
    margin-bottom: 15px;
    padding: 0;
}

.most-popular .item .thumb {
    min-width: 100px;
    width: 100px;
    height: 100px;
}

.most-popular .item .thumb img {
    border-radius: 6px;
}

.sideServiceList .item .title {
    color: white;
    margin: 0px 0px 0px 10px;
}

.sideServiceList .item {
    padding: 10px;
}

.sideServiceList .item .icon i {
    font-size: 35px;
}

@media screen and (max-width: 768px) {
    body .post-content {
        padding: 20px 20px 0px 20px;
    }

    body .post-content .post-body {
        padding: 0px 0px 25px 0px;
    }
}

.post-content .post-body h2 {
    color: #302a71;
}

body .platList {
    margin-bottom: 0;
    padding-bottom: 70px;
}

.platList .icon {
    border: 0;
    border-radius: 6px;
}

.platList .detail h2 {
    font-size: 22px;
    color: #333549;
    font-weight: 500;
}

.platList .item>a:after {
    display: none;
}

.platList .item {
    position: relative;
    border-radius: 10px;
}

.platList .item .action {
    position: absolute;
    right: 20px;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
}

.platList .action .platActiBut i {
    color: white;
}

.platList .action .platActiBut {
    display: flex;
    justify-content: center;
    border-radius: 100%;
    padding: 0;
    min-width: 50px;
    width: 50px;
    height: 50px;
}

.platList {
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 768px) {
.platList {
    grid-template-columns: repeat(1, 1fr);
}
}

.platList .item>a {
    padding: 22px 22px;
}

.packInside {
    display: flex;
    flex-direction: column;
}

.bottomContent {
    width: 100%;
    flex: 1;
    position: relative;
}

body .packDetail ul {
    max-height: 350px;
}

body .stream .packTop {
    min-height: 140px;
}

.packTop .icon {
    border-radius: 12px;
    min-width: 55px;
    min-height: 55px;
}

.packList {
    margin-bottom: 0;
    padding-bottom: 70px;
}

.orPayDetail .amount ul li:nth-last-child(1) span {
    color: #c500e0;
    font-size: 19px;
    font-weight: bold;
}

.orPayDetail .amount ul li:nth-last-child(1) {
    font-weight: bold;
    color: #333333;
}

.orPayDetail .amount ul li {
    color: #4c5473;
}

.orPayDetail .PaymentMethod ul li::after {
    content: "";
    top: calc(50% - 17.5px);
    opacity: .1;
    width: 35px;
    height: 35px;
}

.orPayDetail .PaymentMethod ul li.selectPayment::after,
.orPayDetail .PaymentMethod ul li.selected::after {
    content: "";
    background-image: url(../img/check.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.orPayDetail .PaymentMethod ul li {
    border: 1px solid #b9c4d5;
    padding-left: 50px;
    font-weight: 600;
    color: #4c5473;
    font-size: 20px;
}

.orPayDetail .PaymentMethod ul li {
    width: 100%;
    margin-bottom: 10px;
}

.tab-content .orPackDetail {
    margin-top: 30px;
}

.tab-content .orPackDetail .favPack {
    bottom: auto;
}

.intall.order .conts .icobox i {
    color: #333;
}

body .coupon .coupbtn {
    border-radius: 6px;
}

.hizmetList .splide__pagination {
    display: none;
}

.commentbarsection .area {
    margin-bottom: 0;
    padding-bottom: 0;
}

.faqwell .item .fs-head h3 {
    color: #333;
}

.faqwell .item.show .fs-head {
    border-color: #88bad0;
}

.buyWithCommentWrapper {
    width: 100%;
    display: flex;
    gap: 20px;
}

.buyWithCommentArea {
    order: 1;
}

.buyWithCommentWrapper>div {
    width: calc(50% - 10px);
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.buyContentBox.nopadding {
    padding: 0px;
}

.commentlistPad {
    padding: 0 10px 10px 0;
    width: 100%;
    background: white;
    display: flex;
    border-radius: 30px;
}

@media screen and (min-width:1041px) and (max-width:1280px) {
    .whyus .list .item .content {
        padding: 15px;
    }

    .whyus .list .item .content .detail .title {
        font-size: 18px;
    }

    .whyus .list .item .content .detail p {
        font-size: 15px;
    }
    
    .fastOrder .fastselect{
        min-width: auto;
    }
}

@media screen and (max-width:1041px) {
        body header .navbar {
            height: auto;
            min-height: 56px;
        }
    
    .fastOrder .fastselect{
        min-width: auto;
    }
    .buyWithCommentWrapper {
        flex-direction: column;
    }

    .buyWithCommentWrapper>div {
        width: 100%;
    }
}

body .alert-success {
    border-radius: 10px;
    text-align: center;
    color: #fff;
    background-color: #079219;
    border-color: #079219;
}

body .alert-info {
    border-radius: 10px;
    text-align: center;
    color: #fff;
    background-color: #222737;
    border-color: #222737;
}

.alert-danger {
    border-radius: 10px;
    text-align: center;
    color: #fff;
    background-color: #c90a0a;
    border-color: #c90a0a;
}

#introHome {
    margin-bottom: 0;
    padding-bottom: 30px;
    background: white;
}

.fastselect .cont .item .fastHead {
    font-weight: 600;
    color: #302a71;
}

.orderBox.orsebtns > img {
    height: 14px;
}

