/********** Template CSS **********/ 
:root {
    --primary: #3378c1;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    margin-left: 25px;
    padding: 1px 0;
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;

}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
    width: 425px;
    height: 370px;
    border: 5px solid rgba(0,0,0,0);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
    width: 425px;
    height: 370px;
    border: 5px solid rgba(0,0,0,0);
}

.rounded-circle {
    
    border: 1px solid rgba(255,255,255,0);
    border-radius: 50% ;
  
}

.google-icon {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 20px;
    
}


@media (max-width: 768px) {
    .testimonial-carousel .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .testimonial-carousel .owl-dot.active {
        width: 20px;
    }

    .testimonial-carousel .owl-item .testimonial-item {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .testimonial-carousel .owl-item.center .testimonial-item {
        height: auto;
    }

    .google-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}


/*** Testimonial End ***/

/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

.team-img img {
    max-width: 100%;
    height: 900px;
    width: 100%;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/Bannerbackground2.png) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
.kutu1{
    width: 500px;
    height: 250px;
    float: left;
   
}
.kutu2{
    width: 500px;
    height: 250px;
    float: left;
   
}
.kutu3{
    width: 500px;
    height: 250px;
    float: left;
    
}
.kutu4{
    width: 500px;
    height: 250px;
    float: left;
   
}
.urun{
    width: 100%;
    margin:0 auto;
    padding: 80px 0;
    display: inline-block;
    flex-direction: row;
    justify-content: center;
    text-align: center;
}
.urunkısımblok{
    float: left;
}

.image-overlay {
    
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s;
    padding-left: 15px;
    padding-right: 15px;
}

.image-container {
    position: relative;
    width: fit-content;
    overflow: hidden;
   
    float: left;
}
.image-overlay:hover {
    backdrop-filter: blur(20px);
    opacity: 0.4;
}
@media only screen and (min-width: 1px) and (max-width:991.98px){
    .menubar{
        background-color: black;
    }
    .galerimenu{
        background-color: #05c2d8;
    }
    .image-overlay{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.5s;
        padding-left: 15px;
        padding-right: 15px;
    }
    .telvemail{
        visibility: visible !important;
    }
}
.dılmodul{
    margin-left: auto;
}
.ustbar{
    margin: auto;
}
.telvemail{
    visibility: collapse;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}


.carousel-item .video-slide {
    max-height: 900px;
    width: 100%;
    object-fit: cover;
}


/* Topbar Card Start*/


.videocard {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 50px 50px;
    z-index: 99; 
    top: -100px;
}


.videocard .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    max-width: 100%;
    height: 300px;
    background: white;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.videocard .card:hover {
    height: 400px;
}

.videocard .card .img-box {
    position: absolute;
    top: 20px;
    margin-left: 25px;
    width: 300px;
    height: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.videocard .card:hover .img-box {
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.videocard .card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videocard .card .content {
    position: absolute;
    top: 252px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

.videocard .card:hover .content {
    top: 130px;
    height: 250px;
}

.videocard .card .content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr);
}

.videocard .card .content p {
    color: #333;
}

.videocard .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    background: var(--clr);
    color: white;
    font-weight: 500;
}

.videocard .card .content a:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .videocard .card {
        width: 230px;
        border-radius: 15px;
    }

    .videocard .card .img-box {
        width: 185px;
        border-radius: 10px;
    }

    .videocard .card .content p {
        font-size: 0.8rem;
    }

    .videocard .card .content a {
        font-size: 0.9rem;
    }
}

/* Topbar Card End*/


/* İmage Accordion Start*/
.ia-container {
    width: 500px;
    height: 480px;
    margin: 20px auto;
    overflow: hidden;
    border: 1px solid rgba(5,194,216,0.7);
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);

}

.ia-container figure {
    position: absolute;
    top: 0;
    left: 50px;
    width: 335px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.ia-container > figure {
    position: relative;
    left: 0 !important;
}

.ia-container img {
    display: block;
    height: 480px;
}

.ia-container input {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    cursor: pointer;
    border: 0;
    padding: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 100;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ia-container input:checked{
    width: 5px;
    left: auto;
    right: 0px;
}

.ia-container input:checked ~ figure {
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    left: 335px;
}

.ia-container figcaption {
    width: 100%;
    height: 100%;
    background: rgba(87, 73, 81, 0.1);
    position: absolute;
    top: 0px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ia-container figcaption span {
    position: absolute;
    top: 40%;
    margin-top: -30px;
    right: 20px;
    left: 20px;
    overflow: hidden;
    text-align: center;
    background: rgba(81, 81, 81, 0.8);
    line-height: 20px;
    font-size: 18px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    padding: 20px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
} 

.ia-container input:checked + figcaption,
.ia-container input:checked:hover + figcaption{
    background: rgba(87, 73, 81, 0);
}

.ia-container input:checked + figcaption span {
    -webkit-transition: all 0.4s ease-in-out 0.5s;
    -moz-transition: all 0.4s ease-in-out 0.5s;
    -o-transition: all 0.4s ease-in-out 0.5s;
    -ms-transition: all 0.4s ease-in-out 0.5s;
    transition: all 0.4s ease-in-out 0.5s;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
    filter: alpha(opacity=99);
    opacity: 1;
    top: 50%;
}

.ia-container input:checked ~ figure input{
    z-index: 1;
}

@media screen and (max-width: 720px) {
    .ia-container { 
        width: 390px; 
        height: 374px;
        border: 1px solid rgba(5,194,216,0.5);
    }
    .ia-container figure { 
        left: 40px; 
        width: 260px; 
    }
    .ia-container input { 
        width: 40px; 
    }
    .ia-container input:checked ~ figure { 
        left: 260px; 
    }
    .ia-container figcaption span { 
        font-size: 16px; 
    }
}

@media screen and (max-width: 520px) {
    .ia-container { 
        width: 250px;
        height: 260px;
        border: 1px solid rgba(5,194,216,0.5);
    }
    .ia-container figure { 
        left: 20px; 
        width: 180px; 
    }
    .ia-container input { 
        width: 20px; 
    }
    .ia-container input:checked ~ figure { 
        left: 180px; 
    }
    .ia-container figcaption span { 
        font-size: 12px; 
        letter-spacing: 2px; 
        padding: 10px; 
        margin-top: -20px; 
    } 
}

/* İmage Accordion End*/

/* Map Start*/

.map {
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
}

/* Map End*/

/******/

/* Genel konteynerin stilleri */
.porto-wrap-container {
    margin: center;
}

/* İstatistik bloğunun stilleri */
.stats-block {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.stats-block .porto-sicon-top {
    margin-bottom: 20px;
}

.stats-block .img-icon {
    max-width: 100px;
    max-height: 100px;
}

.stats-block .stats-number {
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.stats-block .counter_suffix {
    font-size: 18px;
    color: #777;
    margin-left: 5px;
}

.stats-block .stats-text {
    font-size: 18px;
    color: #777;
}

/*******image effect start ******/
.translate-effect-right img{ 
    max-width: none !important;
    width: calc(100% + 60px) !important;
    transition: opacity .35s,transform .45s;
    -webkit-transform: translate3d(-40px,0,0);
    transform: translate3d(-36px,0,0);
}
.translate-effect-right:hover img {
    opacity: .6;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.zoomIn-effect img{
    width: 100%;
}
.zoomIn-effect:hover img{
    transform: scale(1.3);
    -o-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
     
}
.zoomOut-effect img{
    transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
}
.zoomOut-effect:hover img{
    transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1); 
     
}
.rotateIn-effect:hover img{
    transform: rotate(8deg) scale(1.4);
    -o-transform: rotate(8deg) scale(1.4);
    -webkit-transform: rotate(8deg) scale(1.4);
    -moz-transform: rotate(8deg) scale(1.4);
     
}
.rotateOut-effect:hover img{
    transform: rotate(-8deg) scale(1.4);
    -o-transform: rotate(-8deg) scale(1.4);
    -webkit-transform: rotate(-8deg) scale(1.4);
    -moz-transform: rotate(-8deg) scale(1.4);
    
}
.shine-effect::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 9999;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.shine-effect:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.circle-effect::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.circle-effect:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
/*******image effect end ******/

/******* Backgraund Sabitleme ******/

.fixed-background {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*************/


/******Ürün seçenekli****/

        #color-options {
            clear: both;
            text-align: center;
        }
        
        #main-image{
            width: 100%; 
            max-height: 500px;
            border: 0px solid #000;
            border-radius: 5% 5% 30% 5%;
            cursor: zoom-in;
        }

        .color-box {
            display: inline-block;
            width: 180px;
            height: 100px;
            margin: 1px;
            border: 0px solid #000;
            border-radius: 5% 5% 30% 5%;
            cursor: pointer;
        }

        .image-text-overlay {
            position: absolute;
            bottom: 0; 
            right: 40%; 
            left: 0;
            top: 35%;
            background: rgba(255, 255, 255, 0.5);
            padding: 20px;
            border: 0px solid #000;
            border-radius: 0% 10% 0% 0%;
            font-size: 12px;
        }
        .image-text-overlay::before {
        position: absolute;
        top: -10%;
        content: "Click Image to Zoom";
        color: #000;
        background: rgba(255, 255, 255, 0.5);
        border: 0px solid #000;
        border-radius: 10%;
        font-size: 12px;
        }
        
        
@media (max-width: 1370px) {
    .image-text-overlay p {
        font-size: 11px;
    }
    .image-text-overlay::before {
        font-size: 11px;
    }
}

@media (max-width: 1350px) {
    .image-text-overlay p {
        font-size: 10px;
    }
    .image-text-overlay::before {
        font-size: 10px;
    }
}
        
@media (max-width: 1250px) {
    .image-text-overlay p {
        font-size: 9px;
    }
    .image-text-overlay::before {
        font-size: 9px;
    }
}

@media (max-width: 1150px) {
    .image-text-overlay p {
        font-size: 8px;
    }
    .image-text-overlay::before {
        font-size: 8px;
    }
}

@media (max-width: 1050px) {
    .image-text-overlay p {
        font-size: 7px;
    }
    .image-text-overlay::before {
        font-size: 7px;
    }
}

@media (max-width: 950px) {
    .image-text-overlay p {
        font-size: 6px;
    }

    .image-text-overlay::before {
        font-size: 6px;
    }
}

@media (max-width: 850px) {
    .image-text-overlay p {
        font-size: 5px;
    }
    .image-text-overlay::before {
        font-size: 5px;
    }
}

@media (max-width: 767px) {
    .image-text-overlay p {
        font-size: 10px;
    }
    .image-text-overlay::before {
        font-size: 10px;
    }
}

@media (max-width: 640px) {
    .image-text-overlay p {
        font-size: 9px;
    }
    .image-text-overlay::before {
        font-size: 9px;
    }
}

@media (max-width: 576px) {
    .image-text-overlay p {
        font-size: 7px;
    }
    .image-text-overlay::before {
        font-size: 7px;
    }
}
@media (max-width: 476px) {
    .image-text-overlay p {
        font-size: 5px;
    }

    .image-text-overlay::before {
        font-size: 5px;
    }
}
        
/******Ürün seçenekli****/

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
}
/*********************************/
