html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

body {
    background: #ffffff none repeat scroll 0 0;
    color: #687188;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #292b2c;
    font-family: "Montserrat", sans-serif;
}

p {
    color: #687188;
    line-height: 28px;
    margin-bottom: 25px;
}

a {
    color: #292b2c;
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all .5s ease-in-out;
}

a:hover {
    color: #1FE075;
    text-decoration: none;
}

a:focus {
    outline: none;
}

img {
    max-width: 100%;
}

ul,
li,
ol {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

label {
    color: #6c757d;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

iframe {
    border: 0;
    display: block;
}

video {
    width: 100%;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section.small_pt,
.top_footer.small_pt {
    padding-top: 50px;
}

.section.small_pb,
.top_footer.small_pb {
    padding-bottom: 50px;
}

.section.pb_20,
.pb_20 {
    padding-bottom: 20px;
}

.section.pb_70,
.pb_70 {
    padding-bottom: 70px;
}

.section.pb_85,
.pb_85 {
    padding-bottom: 85px;
}

div.banner_large_pad {
    padding: 200px 0;
}

.small_padding {
    padding: 30px;
}

.medium_padding {
    padding: 50px;
}

.large_padding {
    padding: 100px;
}

.small_divider {
    height: 30px;
}

.medium_divider {
    height: 50px;
}

.large_divider {
    height: 100px;
}

.padding_eight_all {
    padding: 8%;
}

.padding_eight_lr {
    padding: 0 8%;
}

.padding_eight_tb {
    padding: 8% 0;
}

[class*=overlay_bg_] {
    position: relative;
}

[class*=overlay_bg_]::before {
    background-color: #000;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

[class*=overlay_bg_default_]::before {
    background-color: #1FE075;
}

[class*=overlay_bg_blue_]::before {
    background-color: #031B4E;
}

[class*=overlay_bg_white_]::before {
    background-color: #fff;
}

.overlay_bg_90::before,
.overlay_bg_default_90::before,
.overlay_bg_blue_90::before,
.overlay_bg_white_90::before {
    opacity: 0.9;
}

.overlay_bg_80::before,
.overlay_bg_default_80::before,
.overlay_bg_blue_80::before,
.overlay_bg_white_80::before {
    opacity: 0.8;
}

.overlay_bg_70::before,
.overlay_bg_default_70::before,
.overlay_bg_blue_70::before,
.overlay_bg_white_70::before {
    opacity: 0.7;
}

.overlay_bg_60::before,
.overlay_bg_default_60::before,
.overlay_bg_blue_60::before,
.overlay_bg_white_60::before {
    opacity: 0.6;
}

.overlay_bg_50::before,
.overlay_bg_default_50::before,
.overlay_bg_blue_50::before,
.overlay_bg_white_50::before {
    opacity: 0.5;
}

.overlay_bg_40::before,
.overlay_bg_default_40::before,
.overlay_bg_blue_40::before,
.overlay_bg_white_40::before {
    opacity: 0.4;
}

.overlay_bg_30::before,
.overlay_bg_default_30::before,
.overlay_bg_blue_30::before,
.overlay_bg_white_30::before {
    opacity: 0.3;
}

.overlay_bg_20::before,
.overlay_bg_default_20::before,
.overlay_bg_blue_20::before,
.overlay_bg_white_20::before {
    opacity: 0.2;
}

.overlay_bg_10::before,
.overlay_bg_default_10::before,
.overlay_bg_blue_10::before,
.overlay_bg_white_10::before {
    opacity: 0.1;
}

.ripple {
    background-color: #1FE075;
    border-radius: 100%;
    color: #fff;
    position: relative;
    display: inline-block;
    margin-right: 25px;
    line-height: 50px;
    font-size: 22px !important;
    vertical-align: middle;
    margin-left: -15px;
    height: 50px;
    width: 50px;
    text-align: center;
}

.ripple i {
    margin-right: 0;
    margin-left: 3px;
    font-size: 22px;
}

.ripple::before,
.ripple::after {
    -webkit-animation: ripple 1.8s infinite;
    -moz-animation: ripple 1.8s infinite;
    -o-animation: ripple 1.8s infinite;
    -ms-transition: ripple 1.8s infinite;
    animation: ripple 1.8s infinite;
    background-color: #1FE075;
    border-radius: 100%;
    margin: -20px;
    bottom: 0px;
    content: "";
    display: block;
    left: 0px;
    opacity: 0;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
}

.ripple::before {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.ripple::after {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes ripple {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.btn-ripple-white .ripple::before,
.btn-ripple-white .ripple::after,
.btn-ripple-white .ripple {
    background-color: #fff;
}

.btn-ripple-white .ripple {
    color: #1FE075;
}

.bg_transparent_20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.box_shadow1 {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.border-top-tran {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border_bottom_tran {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*===================================*
  03.START BANNER,SLIDER STYLE
*===================================*/
.banner_section {
    position: relative;
}

.banner_content_wrap {
    position: relative;
    z-index: 1;
}

.banner_half_content {
    padding: 100px 0 80px;
    z-index: 0;
}

.full_screen.banner_half_content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner_section:not(.full_screen),
.banner_section:not(.full_screen) .carousel-item,
.banner_section:not(.full_screen) .banner_content_wrap,
.banner_section:not(.full_screen) .banner_content_wrap .carousel-item {
    height: 800px;
}

.full_screen,
.full_screen .carousel-item {
    height: 100vh;
    min-height: 45rem;
}

.banner_section.slide_medium,
.banner_section.slide_medium .carousel-item,
.banner_section.slide_medium .banner_content_wrap,
.banner_section.slide_medium .banner_content_wrap .carousel-item {
    height: 500px;
}

.banner_section .banner_slide_content {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.carousel-item img {
    position: relative;
    z-index: -1;
    width: 100%;
}

.carousel-control-next,
.carousel-control-prev {
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    height: 50px;
    opacity: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    transition: all 0.3s ease-in-out;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    opacity: 0;
}

.carousel:hover .carousel-control-next,
.carousel:hover .carousel-control-prev {
    opacity: 1;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel_style1 .carousel-control-next,
.carousel_style1 .carousel-control-prev {
    border-radius: 100%;
}

.carousel_style2 .carousel-control-next,
.carousel_style2 .carousel-control-prev {
    font-size: 16px;
    border-radius: 4px;
    height: 40px;
    width: 40px;
}

.light_arrow .carousel-control-next,
.light_arrow .carousel-control-prev {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #000;
}

.carousel-control-next:hover,
.carousel-control-prev:hover,
.light_arrow .carousel-control-next:hover,
.light_arrow .carousel-control-prev:hover {
    background-color: #1FE075;
    color: #fff;
}

.indicators_style1 {
    counter-reset: step;
}

.indicators_style1.carousel-indicators li {
    width: auto;
    height: auto;
    background-color: transparent;
    text-indent: 0;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}

.indicators_style1.carousel-indicators li::before {
    content: "0" counter(step);
    color: #fff;
    counter-increment: step;
    position: static;
    height: auto;
    width: auto;
    margin: 0 10px;
}

.indicators_style1.carousel-indicators li::after {
    content: "";
    margin: 0 8px;
    font-size: 30px;
    color: #fff;
    bottom: -5px;
    line-height: normal;
    height: 20px;
    left: 28px;
    font-weight: 300;
    background-color: #fff;
    width: 2px;
    transform: rotate(10deg);
    display: inline-block;
    vertical-align: middle;
}

.indicators_style1.carousel-indicators li:last-child::after {
    opacity: 0;
    margin: 0;
}

.indicators_style1.carousel-indicators li.active::before {
    color: #1FE075;
}

.indicators_style2,
.indicators_style3 {
    margin-bottom: 15px;
}

.indicators_style2 li {
    width: 10px;
    height: 10px;
    background-clip: inherit;
    border: 0;
    margin: 8px;
    position: relative;
}

.indicators_style2 li::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border: 2px solid #fff;
    margin: -4px;
}

.indicators_style3 li {
    background-color: #333;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    background-clip: inherit;
    border: 0;
    margin: 8px;
    position: relative;
}

.indicators_style3 li::before {
    content: "";
    position: absolute;
    border-radius: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border: 2px solid #333;
    margin: -4px;
}

.indicators_style3 li.active {
    background-color: #1FE075;
}

.indicators_style3 li.active:before {
    border-color: #1FE075;
}

.indicators_style4 li {
    background-color: #fff;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    background-clip: inherit;
    border: 0;
    margin: 5px;
    position: relative;
}

.banner_content .carousel-item {
    padding: 100px 0;
}

.banner_content h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_content p {
    margin-bottom: 30px;
}

.banner_shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    z-index: -1;
}

.banner_shape img {
    width: 100%;
}

.wave_shape_bottom::before {
    background-image: url("../images/wave_shape.png");
    display: block;
    height: 100%;
    content: "";
    background-position: bottom center;
    position: absolute;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
}

.banner_content1 h2 {
    font-size: 78px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.background_shape {
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 35%;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#1affffff', GradientType=0);
    -moz-transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    transform: skewX(30deg);
    transform-origin: left bottom;
    pointer-events: none;
}

.background_shape:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 100%;
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#1affffff', GradientType=0);
}

.banner_center_content {
    margin-top: -70px;
}

.carousel-indicators.vertical_center_right {
    display: block;
    right: 40px;
    top: 50%;
    margin: 0;
    left: auto;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
}

.indicators_style2.vertical_center_right li {
    margin: 15px 0;
}

.banner_content_border {
    border: 10px solid #1FE075;
    padding: 50px;
    position: relative;
}

.slide_banner_img {
    height: 100%;
    position: relative;
    z-index: -1;
}

.zoom-in {
    -webkit-animation: zoomin 5s;
    -moz-animation: zoomin 5s;
    -o-animation: zoomin 5s;
    animation: zoomin 5s;
}

@keyframes zoomin {
    0% {
        -moz-transform: scale(1.2) rotate(3deg);
        -webkit-transform: scale(1.2) rotate(3deg);
        transform: scale(1.2) rotate(3deg);
    }

    100% {
        -moz-transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}


.header_with_topbar.transparent_header+.banner_section .banner_slide_content {
    margin-top: 45px;
}

/*===================================*
  03.END BANNER,SLIDER STYLE
*===================================*/


/*===================================*
  05.START ICON BOX STYLE
*===================================*/
.ibc_orange {
    color: #FF9F54 !important;
    background-color: rgba(255, 159, 84, 0.2) !important;
}

.ibc_purple {
    color: #B598F6 !important;
    background-color: rgba(181, 152, 246, 0.2) !important;
}

.ibc_pink {
    color: #FA247B !important;
    background-color: rgba(250, 36, 123, 0.2) !important;
}

.ibc_green {
    color: #44CEB0 !important;
    background-color: rgba(68, 206, 176, 0.2) !important;
}

.ibc_red {
    color: #FA5E5D !important;
    background-color: rgba(250, 94, 93, 0.2) !important;
}

.ibc_blue {
    color: #439CEE !important;
    background-color: rgba(67, 156, 238, 0.2) !important;
}

.icon_box {
    margin-bottom: 30px;
}

.icon {
    margin-bottom: 15px;
}

.icon_box_content h1,
.icon_box_content h2,
.icon_box_content h3,
.icon_box_content h4,
.icon_box_content h5,
.icon_box_content h6 {
    text-transform: capitalize;
}

.icon i {
    font-size: 30px;
}

.icon_box p:last-child {
    margin: 0;
}

.icon_box_content .link i {
    vertical-align: middle;
    margin-left: 2px;
}

.box_img {
    margin-bottom: 15px;
}


/*===================================*
  05.END ICON BOX STYLE
*===================================*/

/*===================================*
  14.START MAP STYLE
*===================================*/
.map iframe {
    height: 460px;
    width: 100%;
    border: 0;
    display: block;
}

.contact_map {
    height: 400px;
}

.contact_map2 {
    height: 100%;
}

.map1 {
    height: 460px;
}

/*===================================*
  14.END MAP STYLE
*===================================*/

/*===================================*
  19.START BREADCRUMB STYLE
*===================================*/
.breadcrumb_section {
    padding: 40px 0;
    width: 100%;
}

.breadcrumb_section.page-title-mini {
    padding: 70px 0;
}

.page-title-mini .page-title h1 {
    font-size: 20px;
}

.page-title-mini .breadcrumb li {
    font-size: 14px;
}

.page-title h1 {
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    line-height: normal;
}

.page_title_light *,
.page_title_light .breadcrumb-item,
.page_title_light .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f3d1";
    font-family: "Ionicons";
    vertical-align: middle;
}

.page-title+.breadcrumb {
    margin-top: 15px;
}

.page-title+span {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.page_title_video {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
}

.page_title_video video {
    object-fit: cover;
    width: 100%;
}

.breadcrumb-item a i {
    font-size: 26px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
    display: inline-block;
}

.page-title-video {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -3;
}

.page-title-video video {
    object-fit: cover;
    width: 100%;
}

/*===================================*
  19.END BREADCRUMB STYLE
*===================================*/

/*SSS ACORDİON*/
.sss .sss-item {
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

.sss .sss-item .sss-header {
    position: relative;
}

.sss .sss-item .sss-header .title {
    cursor: pointer;
    color: #000;
    position: relative;
    background: #1c9036;
    margin: 0;
    padding: 15px 20px 15px 60px;
    font-size: 18px;
}

.sss .sss-item .sss-header span {
    position: absolute;
    left: 20px;
    top: 15px;
    height: 25px;
    width: 25px;
    color: #ffffff;
    background-color: var(--renk1);
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    font-size: 13px;
}

.sss .sss-item .sss-body {
    padding: 20px;
    background: #FCFCFC;
    border: 1px solid #e2e3e6;
    display: none;
}

.sss .sss-item .sss-body p {
    font-size: 15px;
    color: #444444;
    margin: 0px;
}

.sss .sss-item:nth-child(1) .sss-body {
    display: block;
}

.custom-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sss-container,
.form-container {
    flex: 1;
    padding: 0 15px;
}

@media (max-width: 992px) {
    .custom-flex-container {
        flex-direction: column;
    }
}

/*SSS ACORDİON*/

/*SLİDER*/
.mramor-slider-section {
    position: relative;
    margin-top: 20px;
}

.mramor-slider-controls {
    mramoron: relative;
    z-index: 1;
}

.mramor-slider-slide-content {
    padding: 80px 0 60px;
    z-index: 0;
}

.mramor-slider-section:not(.full_screen),
.mramor-slider-section:not(.full_screen) .carousel-item,
.mramor-slider-section:not(.full_screen) .mramor-slider-controls,
.mramor-slider-section:not(.full_screen) .mramor-slider-controls .carousel-item {
    height: 500px;
}

.mramor-media-container {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 10px solid white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.mramor-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.carousel-control-next,
.carousel-control-prev {
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    height: 50px;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    transition: all 0.3s ease-in-out;
}

.mramor-slider-section:hover .carousel-control-next,
.mramor-slider-section:hover .carousel-control-prev,
.mramor-slider-section .carousel-item:hover .carousel-control-next,
.mramor-slider-section .carousel-item:hover .carousel-control-prev {
    opacity: 1;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev {
    left: 40px;
}

.mramor-slider-content h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.mramor-slider-content p {
    margin-bottom: 30px;
}

@media (min-width: 1300px) {

    .mramor-slider-section:not(.full_screen),
    .mramor-slider-section:not(.full_screen) .carousel-item,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls .carousel-item {
        height: 90vh;
    }

    .mramor-media-container {
        height: calc(90vh - 40px);
    }

    .mramor-media {
        height: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1299px) {

    .mramor-slider-section:not(.full_screen),
    .mramor-slider-section:not(.full_screen) .carousel-item,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls .carousel-item {
        height: 600px;
    }

    .mramor-media-container {
        height: calc(100% - 40px);
        width: calc(100% - 40px);
    }

    .mramor-media {
        height: 100%;
    }

    .carousel-control-next {
        right: 40px;
    }

    .carousel-control-prev {
        left: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .mramor-slider-section:not(.full_screen),
    .mramor-slider-section:not(.full_screen) .carousel-item,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls .carousel-item {
        height: 480px;
    }

    .mramor-media-container {
        height: calc(100% - 40px);
        width: calc(100% - 40px);
    }

    .mramor-media {
        height: 100%;
    }

    .carousel-control-next {
        right: 35px;
    }

    .carousel-control-prev {
        left: 35px;
    }
}

@media (max-width: 767px) {

    .mramor-slider-section:not(.full_screen),
    .mramor-slider-section:not(.full_screen) .carousel-item,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls,
    .mramor-slider-section:not(.full_screen) .mramor-slider-controls .carousel-item {
        height: 480px;
    }

    .mramor-media-container {
        height: 480px;
        width: 100%;
        border: 5px solid white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 0;
    }

    .mramor-media {
        height: 100%;
    }

    .carousel-control-next,
    .carousel-control-prev {
        background-color: rgba(0, 0, 0, 0.5);
        font-size: 18px;
        height: 50px;
        opacity: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        transition: all 0.3s ease-in-out;
    }

    .carousel-control-next {
        right: 20px;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .mramor-slider-section:hover .carousel-control-next,
    .mramor-slider-section:hover .carousel-control-prev,
    .mramor-slider-section .carousel-item:hover .carousel-control-next,
    .mramor-slider-section .carousel-item:hover .carousel-control-prev {
        opacity: 1;
    }
}



/*SOCİAL MEDİA*/
.section-wrapper .floating-action-button {
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transform: rotate(45deg);
    position: fixed;
    bottom: 105px;
    right: 10px;
    z-index: 10001;
}

.section-wrapper .share-btn {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #e91e63;
    border-radius: 10px;
    box-shadow: 0px 2px 17px -1px rgba(0, 0, 0, .3);
    z-index: 1000;
    transform: rotate(-45deg);
}

.section-wrapper #share-icon {
    color: #fff;
    display: block;
}

.section-wrapper ul {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
}

.section-wrapper ul li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    list-style: none;
    transition: .5s;
    border-radius: 10px;
}

.section-wrapper ul.active li:nth-child(1) {
    top: 100%;
    left: 100%;
    transition-delay: 0s;
    padding: 15px;
    transform: rotate(-45deg);
    background: #25D366;
}

.section-wrapper ul.active li:nth-child(2) {
    top: 100%;
    left: 0%;
    transition-delay: 0.2s;
    padding: 15px;
    transform: rotate(-45deg);
    background: #20a9e9;
}

.section-wrapper ul.active li:nth-child(3) {
    top: 100%;
    left: -100%;
    transition-delay: 0.2s;
    padding: 15px;
    transform: rotate(-45deg);
    background: #fa01c4;
}

.section-wrapper ul.active li:nth-child(4) {
    top: 0%;
    left: -100%;
    transition-delay: 0.0s;
    padding: 15px;
    transform: rotate(-45deg);
    background: #20a9e9;
}

.section-wrapper ul.active li:nth-child(5) {
    top: -100%;
    left: -100%;
    transition-delay: 0.0s;
    padding: 15px;
    transform: rotate(-45deg);
    background: #f5b401;
}

.section-wrapper i {
    font-size: 28px;
    color: #fff;
}

.hide {
    display: none;
}

.show {
    display: block;
}

@media only screen and (max-width:320px) {
    .section-wrapper .floating-action-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
        bottom: 75px;
        right: 15px;
    }

    .section-wrapper ul.active li {
        padding: 8px;
    }

    .section-wrapper i {
        font-size: 20px;
    }

    .floating-action-button img {
        max-width: 20px;
    }
}

@media only screen and (min-width:321px) and (max-device-width:767px) {
    .section-wrapper .floating-action-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 85px;
        right: 20px;
    }

    .section-wrapper ul.active li {
        padding: 10px;
    }

    .section-wrapper i {
        font-size: 24px;
    }

    .floating-action-button img {
        max-width: 30px;
    }
}

@media only screen and (min-width:1824px) {
    .section-wrapper .floating-action-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
        bottom: 100px;
    }

    .section-wrapper ul.active li {
        padding: 15px;
    }

    .section-wrapper i {
        font-size: 30px;
    }
}



/* Normal ok işaretçisi */
.default-cursor {
    cursor: default;
}

/* Progress Wrap Styles */
.progress-wrap {
    position: fixed;
    right: 15px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    content: '\f062';
    font-weight: 900;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: var(--site-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    content: '\f062';
    font-weight: 900;
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    opacity: 0;
    background: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--site-color);
    /* Fallback for browsers not supporting text-fill-color */
    color: var(--site-color);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--site-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* About Section */
.sec-pad {
    padding: 30px 0px 10px 0px;
}

.auto-container {
    position: relative;
    max-width: 1210px;
    padding: 0px 15px;
    margin: 0px auto;
}

.about-section {
    position: relative;
    background-color: #ffffff;
}

.about-section .image-box {
    position: relative;
    display: block;
    border-radius: 35px 35px 0px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-section .image-box figure {
    margin: 0;
}

.about-section .image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 35px 35px 0px;
}

.about-section .content-box {
    position: relative;
    display: block;
    padding-left: 30px;
}

@media (max-width: 991px) {
    .about-section .content-box {
        padding-left: 0;
        margin-top: 30px;
    }
}

.sec-title {
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--site-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-title .sub-title::before {
    position: absolute;
    content: "";
    background: var(--site-color);
    width: 20px;
    height: 20px;
    left: 0px;
    top: 2px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0px;
    color: #222;
}

.sec-title.centred {
    text-align: center;
}

.about-section .text-box {
    margin-bottom: 30px;
}

.about-section .text-box p {
    font-size: 16px;
    line-height: 1.8em;
    color: #666;
    margin-bottom: 20px;
}

.about-section .btn-two {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    background: var(--site-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px 10px 0px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.about-section .btn-two:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-section .btn-box {
    position: relative;
    display: block;
}