@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
    html {
        transform: rotate(-90deg);
        transform-origin: left top;
        width: 100vh;
        overflow-x: hidden;
        position: absolute;
        top: 100%;
        left: 0;
    }
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #E42C30;
}

a:hover {
    color: #E42C30;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

.btn-orange {
    background: #4B96CE;
    color: #fff;
    transition: .5s all ease-in;
    position:relative;
    top:20px;
}

.btn-orange:hover {
    background: #FBCA00;
    color: #fff;
}

.img-about {
    height: 215px;
    width: 100%;
}

@media (max-width: 575px) {
    .img-about {
        height: 155px;
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

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

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #E42C30;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #E42C30;
    color: #fff;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #E42C30;
    border-top-color: #ffe9e3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    display: flex;
    transition: all 0.5s;
    z-index: 999;
    padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(21, 34, 43, 0.85);
    padding: 12px 0;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-left: auto;
    margin-right: auto;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 992px) {
    #header {
        padding: 12px 0;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

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

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 12px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgba(255, 255, 255, 1);
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0 3px;
    z-index: 999;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #E42C30;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
    visibility: visible;
    width: 100%;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #fff;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 12px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #15222b;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #E42C30;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Get Startet Button */

.get-started-btn {
    margin-left: 25px;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    border: 2px solid #fff;
}

.get-started-btn:hover {
    background: #fd3800;
    color: #fff;
    border-color: #E42C30;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 6px 18px;
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #15222b;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #E42C30;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(4, 7, 9, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-inner {
    background-attachment: scroll;
    background-size: cover;
    height: 60vh;
    max-width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.hero-inner::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(13, 20, 26, .1);
}


/* 
=====================================
    hero-box
=====================================
*/

.hero-container {
    height: 100%;
    padding-bottom: 15px;
}

@media (max-width: 575px) {
    .hero-container {
        margin-top: 15px;
        padding-top: 0;
    }
    .hero-box {
        padding: 0!important;
    }
}

.hero-box {
    width: 100%;
    background: transparent;
    padding: .5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 310px;
}

.hero-img-box {
    width: 100px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-box img {

    max-width: 100%;
    height: auto;
}

.hero-box-content p {
    text-align: center;
    font-size: 1rem;
    margin-top: 0px;
    margin-bottom: 1.4rem;
}

@media (max-width: 1024px) {
    #hero {
        height: 100%!important;
    }
}

@media (max-width: 768px) {
    #hero {
        height: 100%!important;
    }
    #header .logo img {
        max-height: 30px;
    }
}

@media (max-width: 575px) {
    #header .logo img {
        max-height: 30px;
    }
}


/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

main#main {
    position: relative;
    margin:0 auto;
     /*top:-100px;*/
    z-index: 3;
}
.hero-container{
    background:rgba(255,255,255,0.3);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top:25px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

section#about {
    /*padding-top: 30px;*/
}

@media (max-width: 575px) {
    section {
        padding: 0;
    }
    section#features,
    section#services {
        padding-top: 60px;
    }
    section#features {
        padding-bottom: 30px;
    }
}

.section-bg {
    background-color: #f0f4f8;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 1.5em;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5c8eb0;
    font-family: "Poppins", sans-serif;
    
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #ff8664;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #263d4d;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .container {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.about .count-box {
    padding: 60px 0;
    width: 100%;
}

.about .count-box i {
    display: block;
    font-size: 48px;
    color: #a1bdd1;
    float: left;
}

.about .count-box span {
    font-size: 28px;
    line-height: 25px;
    display: block;
    font-weight: 700;
    color: #365870;
    margin-left: 60px;
}

.about .count-box p {
    padding: 5px 0 0 0;
    margin: 0 0 0 60px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2e4b5e;
}

.about .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #2e4b5e;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.about .count-box a:hover {
    color: #477392;
}

.about .content {
    font-size: 15px;
}

.about .content h3 {
    font-weight: 700;
    font-size: 24px;
    color: #263d4d;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.about .content ul i {
    font-size: 24px;
    color: #E42C30;
    position: absolute;
    left: 0;
    top: -2px;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#E42C30 50%, rgba(228, 44, 48, .4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(228, 44, 48, .8);
    top: -15%;
    left: -15%;
    background: rgba(228, 44, 48, 1);
}

.about .play-btn:hover::after {
    border-left: 15px solid #E42C30;
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/

.about-boxes {
    background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 30px 0;
    position: relative;
}

.about-boxes::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

.about-boxes .container,
.about-boxes .container-fluid {
    position: relative;
    z-index: 10;
}

.about-boxes .card {
    border-radius: 3px;
    border: 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-boxes .card-icon {
    text-align: center;
    margin-top: -32px;
}

.about-boxes .card-icon i {
    font-size: 32px;
    color: #fff;
    width: 64px;
    height: 64px;
    padding-top: 5px;
    text-align: center;
    background-color: #E42C30;
    border-radius: 4px;
    text-align: center;
    border: 4px solid #fff;
    transition: 0.3s;
    display: inline-block;
}

.about-boxes .card-body {
    padding-top: 12px;
}

.about-boxes .card-title {
    font-weight: 700;
    text-align: center;
}

.about-boxes .card-title a {
    color: #15222b;
}

.about-boxes .card-title a:hover {
    color: #E42C30;
}

.about-boxes .card-text {
    color: #5e5e5e;
}

.about-boxes .card:hover .card-icon i {
    background: #fff;
    color: #E42C30;
}

@media (max-width: 1024px) {
    .about-boxes {
        background-attachment: scroll;
    }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    background: #f0f4f8;
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 70%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
}

.clients img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 1px solid #b5ccdb;
    padding: 25px;
    transition: 0.3s;
    color: #15222b;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    color: #E42C30;
}

.features .nav-link.active {
    background: #E42C30;
    color: #fff;
    border-color: #E42C30;
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
    .features ul.nav-tabs {
        flex-direction: row;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }
    .features .nav-link i {
        font-size: 24px;
    }
    .features .nav-link {
        flex-direction: column;
    }
    .features .nav-link h4 {
        font-size: 9px;
        text-align: center;
    }
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0 10px 0 10px;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #E42C30;
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
}

.services .icon-box i {
    float: left;
    color: #5c8eb0;
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #365870;
    transition: 0.3s;
}

.services .icon-box .icon-box:hover h4 a {
    color: #E42C30;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

.services .icon-box:hover h4 a {
    color: #E42C30;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
    background-color: #E42C30 !important;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    margin: 0 3px 10px 3px;
    transition: all ease-in-out 0.3s;
    background: #e5edf3;
    border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #E42C30;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.portfolio .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: #E42C30;
    padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: white;
    transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #ffc1b0;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 15px;
}

.portfolio .portfolio-item:hover img {
    top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    position: relative;
}

.team .container {
    position: relative;
    z-index: 10;
}

.team .member {
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    overflow: hidden;
}

.team .member .member-info {
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 15px;
    color: #15222b;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.5s;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #15222b;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #7fa5c0;
    bottom: 0;
    left: 0;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.team .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #477392;
}

.team .member .social a:hover {
    color: #E42C30;
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}

@media (max-width: 992px) {
    .team .member {
        margin-bottom: 110px;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

section#contact {
    padding: 0;
    position: relative;
}

.contact-form {
    position: absolute;
    display: flex;
    justify-content: center;
    left: 400px;
    top: 63px;
    height: 426px;
    background-color: white;
    border-radius: 3px;
}
.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
}

.contact .info-box i {
    font-size: 32px;
    color: #E42C30;
    border-radius: 50%;
    padding: 8px;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #E42C30;
}

.contact .php-email-form input {
    padding: 20px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #E42C30;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #ff5e31;
}

@media (max-width:1024px) {
    .contact-form {
        left: 50px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        left: 70px;
    }
}

@media (max-width: 575px) {
    .contact-form {
        left: 45px
    }
}

.contact-form .card {
    padding: 2rem;
}

.contact-form .card-title {
    display: flex;
    justify-content: center;
    align-content: center;
    font-size: 24px;
    font-weight: 500;
}

.contact-form .card-content {
    display: flex;
    padding: 20px;
}

.contact-form input.contact-input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 4rem;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 1px solid #E42C30;
    box-shadow: 0 1px 0 0 #E42C30;
}

.contact-form input:focus+label,
.contact-form textarea:focus+label {
    color: #E42C30;
    font-size: 0.8rem;
    transform: translateY(-60%);
}

.contact-form .form-contact label {
    color: #9e9e9e;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    cursor: text;
    transition: .2s ease-out;
}

.form-contact textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
    transition: all 0.3s;
    overflow-y: hidden;
    padding: 0 0 1rem 0;
    resize: none;
}

.btn-contact {
    border: none;
    border-radius: 2px;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    padding: 0 2rem;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #E42C30;
    color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    transition: 1s all ease;
}

.btn-contact:hover {
    color: #E42C30;
    background: #fff;
    border: 1px solid #E42C30;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f0f4f8;
    min-height: 40px;
    margin-top: 66px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #263d4d;
    content: "/";
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 58px;
    }
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #E42C30 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #121d24;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #15222b;
    border-bottom: 1px solid #1d303c;
    padding: 60px 0 30px 0;
    margin-top:-5px;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        text-align: center;
    }
    #footer .footer-top {
        padding: 30px 0 30px 0;
    }
    .footer-newsletter {
        text-align: center;
    }
}

#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #E42C30;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #E42C30;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 11px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #E42C30;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    position: relative;
    border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 90px);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"]:focus {
    outline: none;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #E42C30;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #15222b;
    color: #E42C30;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    transition: 0.3s;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
    display: block;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(228, 44, 48, .8);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.card-img-top {
    height: 233px;
    max-height: 233px;
}

.tab-content {
    max-height:500px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    border-radius: 15px;
}

.tab-content::-webkit-scrollbar {
    /* WebKit */
    width: 0;
    height: 0;
}

/*
@media (max-width: 768px) {
    .tab-content {
        max-height: 440px!important;
    }
}
@media (max-width: 575px) {
    .tab-content {
        max-height: 350px!important;
    }
}
*/
.footer-second {
    /*display: none;*/
    width: 100%;


}

.sidebar {
    flex: 1;
    position: fixed;
    top: 66px;
    left: 0;
    bottom: 0;
    height: calc(100% - 66px);
    max-height: calc(100% - 66px);
    width: 250px;
    background: #fff;
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 33px;
    right: 0;
    width: 2px;
    height: inherit;
    background: rgba(228, 44, 48, .8);
}

.page-content {
    flex: 2;
    background: inherit;
    height: 100%;
    margin-left: auto;
    margin-top: 66px;
}

.wrapper .tab-content {
    width: 100%;
    max-height: 100% !important;
    padding: 2rem;
}

.sidebar-nav-header {
    font-size: 1.3rem;
    margin: 0 auto;
    border: 2px solid red;
    padding: 5px 10px;
    font-weight: bold;
}

.sidebar-nav-header::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    height: 2px;
    width: 25px;
    background: red;
}

aside.sidebar .nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

aside.sidebar .nav::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    width: 2px;
    height: 100%;
    background: red;
}

aside.sidebar .nav a.nav-link {
    font-size: 1rem;
    background: transparent;
    color: #000;
    position: relative;
    left: 45px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-weight: 700;
}

aside.sidebar .nav a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -33px;
    width: calc(95% - 2px);
    height: 1px;
    background: rgba(228, 44, 48, 1);
}

.company-logo {
    width: 100%;
    padding: 2rem;
}

.company-logo img {
    max-width: 100%;
}

@media (max-width: 768px) {}

@media (max-width: 575px) {}

.icon-box {
    position: relative;
}

.zoom-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: none;
    margin: 10px;
    transition: .5s all ease-in;
}

.zoom-box .absolute-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: none;
    width: 0;
    height: 0;
}

.icon-box:hover .zoom-box {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: rgba(228, 44, 48, .3);
    border: 1px solid #E42C30;
}

.icon-box:hover .zoom-box .absolute-btn {
    display: block;
    width: 150px;
    height: 30px;
    line-height: 1;
}

.hero-inner-button-group {
    display: block;
    top: 25%;
    transform: translateY(-25%);
    z-index: 999;
    width: 100%;
    height: 100%;
    background: black;
    transition: .5s all ease-out;
}

.btn-app {
    width: 135px;
    height: 90px;
    background: #fff;
    color: #080808;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    text-align: center;
    border: 5px solid #b5ccdb;
    transition: .5s all ease-out;
}

.btn-app:last-child {
    margin-right: 0;
}

.btn-app:hover {
    color: #FBCA00
}
.text-local{
    position: relative;
    top:20px;
}
.text-local>a.btn{
    margin-top:20px!important;
}
.mb-50{
    margin-bottom:50px!important;
}
.mt-60{
    margin-top:60px!important;
}
.mt-70{
    margin-top:70px!important;
}

.mt-80{
    margin-top:80px!important;
}
.mt-100{
    margin-top:100px!important;
}
@media (max-width: 1300px) {
    #genis-ekranda{
        display: none;
    }
}
@media (min-width: 1300.1px) {
    #hizmetler{
        display: none;
    }
}
.container#to-end{
    justify-content: end !important;
    max-width: 1150px;
    margin-left: 0px;
}

.contact .info-box#fiyat {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px 0 30px 0;
}

.carousel{
  width: 100vw;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.carousel .list .item{
  position: absolute;
  inset: 0 0 0 0;
}

.carousel .list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .list .item:nth-child(1){
  z-index: 1;
}

.carousel.next .list .item:nth-child(1) img{
    width: 0px;
    height: 0px;
    position: absolute;
    left: 50%;
    bottom: 50%;
    border-radius: 50%;
    animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage{
  to{
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}

.carousel.prev .list .item:nth-child(2){
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
  position: absolute;
  bottom: 0;
  left: 0;
  animation: outImage 0.5s linear 1 forwards;
}

@keyframes outImage{
  to{
    width: 0;
    height: 0;
    border-radius: 50%;
    left: 50%;
    bottom: 50%;
  }
}

.carousel.next .arrows button,
.carousel.prev .arrows button{
  pointer-events: none;
}

.arrows{
    position: absolute;
    bottom: 45%;
    width: 100vw;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.arrows button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  font-family: monospace;
  color: white;
  font-weight: bold;
  font-size: large;
  transition: .5s;
  z-index: 100;
}

.arrows button:hover{
  color: #555;
  background-color: white;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#teklif{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tarihce-img img{
    height: 100%;
    width: 100%;
}

.row#tarihce-sag{
    justify-content: flex-end;
    background-color: #C0C0C0;
    color: #fff;
}

.row#tarihce-sol{
    justify-content: flex-start;
    background-color: #E42C30;
    color: #fff;
}
#agac .row{
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
}
#agac .row p{
    text-align: center;
}
#agac .row div{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
#agac .row div h3{
    padding-bottom:10px;
}

.anadolu-grubu{
    display: flex;
    justify-content: center;
    text-align: center;
}
.row#tarihce {
    margin:0px;
}
.kadromuz{
    padding-left:10px;
    margin-bottom:30px;
}
#surdurulebilirlik-yazi h1{
    text-align: center;
}
#surdurulebilirlik-yazi p{
    text-align: left;
}
.surdurulebilirlik-img img{
    border-radius: 10px;
    height:100%;
    width:100%;
}
.neden-anadolu{
    margin-top:40px;
    margin-bottom:40px;
    margin-left:20px;
}
#markalar{
    margin-bottom:25px;
}
#no-padding{
    padding-bottom: 0px;
}
#otomotiv-logo img{
    width:100%;
    height:100%;
}
#otomotiv-resim-kutusu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.otomotiv-yan-resim{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#otomotiv-yazi{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align:center;
}
#otomotiv-logo .row{
    margin:40px 0;
}
#otomotiv-yazi a{
    background: red;
    height: 30%;
    width: 70%;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 60px;
}
.teklif-al p{
    font-size: 20px;
    color: white;
    margin-bottom: 0px;
}

@keyframes slide{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
.urunler{
    overflow:hidden;
    display:inline-flex;
}
.urunler-alt{
    padding-bottom:0 !important;
}

.urunler-hero{
    padding:0;
    height:100px;
}
.urun{
    height:100px;
    align-items:center;
}
.urunler-slider{
    display:flex;
    animation: 25s slide infinite linear;
    align-items:center;
}
.urun img{
    height:100%;
    margin: 0 40px;
}

.otomotiv-content{
    margin:0;
    padding:0;
}

.otomobil-siyah{
    color: white;
}
.otomobil-beyaz{
    color: black;
    text-align:end;
}

.otomobil-cerceve{
    overflow: hidden;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display:flex;
}

.otomobil-cerceve ul{
    list-style:none;
}
.otomobil-cerceve a{
    cursor:pointer
}


.otomobil-resim{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction:column;
    height:70vh;
}

.otomobil-resim div{
    white-space:nowrap;
}


.otomobil-resim img{
    max-width:100%;
    max-height:70%;
}


.otomobil-icerik{
    margin-top: auto;
    margin-bottom: auto;
    padding-right:5%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.otomobil-icerik h3{
    padding-bottom:50px;
    font-size:40px;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-20%);
}
.otomobil-icerik p{
    padding-left:20px;
    font-size:1.1em;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-20%);
}


*/


.otomotiv-karsilama{
    padding:60px;
}

.otomotiv-side-bar{
    display:flex;
    justify-content: center;
    align-items:center;
    margin-top:15px;
    flex:0 0 auto;
    /*
    position:absolute;
    top:65px;
    */
}

.otomotiv-side-bar img{
    max-width:80%;
    max-height:80%;
}
.otomotiv-side-bar ul{
    padding-inline-start:0px;
    justify-content: center;
}
.sidebar-item{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition-duration: 0.3s;
}
.sidebar-item-img{
    width:70px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgb(46,46,46);
    border-radius:20%;
    margin-bottom:5px;
    transition-duration: 0.3s;
}
.sidebar-item-yazi{
    color:white;
    text-align:center;
    font-weight:600;
    font-size:13px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.otomotiv-tabs .nav-link.active{
    color: inherit;
    background-color: inherit;
    border-color: rgba(255,255,255,0);
    transition-duration: 0.3s;
}

.otomotiv-tabs .nav-link.active img{
    filter: brightness(0.2) contrast(1.0);
    transition-duration: 0.3s;

}
.otomobil-cerceve .nav-link.active .sidebar-item-img{
    background-color:rgb(222,222,222);
    transition-duration: 0.3s;
}
.otomotiv-tabs .nav-link:hover img{
    filter: brightness(0.2) contrast(1.0);
    transition-duration: 0.3s;
}
.otomobil-cerceve .nav-link:hover .sidebar-item-img{
    background-color:rgb(222,222,222);
    transition-duration: 0.3s;
}
.otomotiv-tabs .nav-link:hover{
    border-color: rgba(255,255,255,0);
    transition-duration: 0.3s;
}
.otomobil-cerceve .tab-content{
    color:white;
    overflow:hidden;
}
.otomotiv-icerik{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.otomotiv-icerik-img {
    max-height: 70vh; 
    display: flex;
    align-items: center;
    overflow: hidden;
}
.otomotiv-icerik img{
    width: 100%;
    height: 100%;
    object-fit:contain;
}
.otomotiv-icerik a{
    color:white;
    display: flex;
    flex-direction: column;
}
.otomotiv-icerik h3{
    font-size: 50px;
    letter-spacing: 5px;
    font-weight: 700;
    padding-top:30px;
    text-align:center;
}
.cerceve1 .tab-content{
    max-height:75vh;
}

.otomotiv-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    height:70vh;
}
.icerik-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.otomotiv-tabs{
    border-bottom:inherit;
}
.otomobil-cerceve .tab-content ul{
    display:flex;
    padding:0;
    padding-bottom:30px;
    align-items:center;
    flex-wrap: wrap;
    justify-content: center;
}
.yaglar-opet .menu{
    align-items:normal!important;
}
.otomobil-cerceve .tab-content li{
    padding: 10px;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cerceve1 {
    background: url('../img/fon/fonn3.webp') no-repeat center center fixed;
    align-items: flex-start;
    flex-direction: column;
    /*
    height:max-content;
    min-height:100vh;
    */
}
.cerceve5 {
    background: url('../img/fon/fonn2.webp') no-repeat center center fixed;
}
.cerceve2 {
    background: url('../img/fon/fonn4.webp') no-repeat center center fixed;
}
.cerceve3 {
    background: url('../img/fon/fonn2.webp') no-repeat center center fixed;
}
.cerceve4 {
    background: url('../img/fon/fonn1.webp') no-repeat center center fixed;
}

.otomotiv-teklif,
.online-magaza{
    background-color: rgb(178, 34, 34);
    padding: 3px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration-color: rgba(255,255,255,0.0);
    transition-duration: 0.3s;
}
.online-magaza,
.otomotiv-teklif{
    border:solid white 2px;
}
.online-magaza:hover,
.otomotiv-teklif:hover{
    transition-duration: 0.3s;
    background-color:white;
    color:red;
    border-color:red;
}
.scroller{
    flex-wrap:nowrap;
    overflow:hidden;
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}
#tab-1 .otomotiv-teklif,
#tab-2 .otomotiv-teklif{
    border:none;
    background-image: linear-gradient(to right,rgb(46,46,46),rgb(111,111,111));
    padding: 3px 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.3s;
}
#tab-1 .otomotiv-teklif:hover,
#tab-2 .otomotiv-teklif:hover{
    background-image: linear-gradient(to right,rgb(144,144,144),rgb(209,209,209));
    color:white;
    transition-duration: 0.3s;
}
.montaj-wrapper{
    display:flex;
}
.montaj-wrapper.sol{
    text-align:left;
}
.gecis{
    transition: all 0.2s;
}







.aciklama div{
    animation-name: fadeIn;
    animation-duration: 0.3s;
    transform: translateY(-5%);
    animation-fill-mode: forwards;
}

.aciklama-content div,
.aciklama-content h5
{
    opacity: 0;
    filter: blur(10px);
    animation-name: fadeIn;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}
.otomotiv-wrapper h3{
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-50%);
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.otomotiv-wrapper ul{
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-5%);
    animation-name: fadeIn;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}
.otomotiv-wrapper .otomotiv-icerik-img{
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-10%);
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    to {
        filter: blur(0px);
        opacity: 1;
        transform: translateY(0%);
    }
}

.montaj-wrapper.sol .otomobil-resim.active{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.montaj-wrapper.sol .otomobil-icerik.active h3{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .15s;
    animation-fill-mode: forwards;
}
.montaj-wrapper.sol .otomobil-icerik.active p{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

.otomobil-cerceve.sol-taraf .otomobil-resim.active{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay:.1s;
    animation-fill-mode: forwards;
}
.otomobil-cerceve.sol-taraf .otomobil-icerik.active h3{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .15s;
    animation-fill-mode: forwards;
}
.otomobil-cerceve.sol-taraf .otomobil-icerik.active p{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
}

.montaj-wrapper.sag .otomobil-resim.active{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.montaj-wrapper.sag .otomobil-icerik.active h3{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .15s;
    animation-fill-mode: forwards;
}
.montaj-wrapper.sag .otomobil-icerik.active p{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}


.otomobil-cerceve.sag-taraf .otomobil-resim.active{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay:.1s;
    animation-fill-mode: forwards;
}
.otomobil-cerceve.sag-taraf .otomobil-icerik.active h3{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .15s;
    animation-fill-mode: forwards;
}
.otomobil-cerceve.sag-taraf .otomobil-icerik.active p{
    opacity: 0;
    filter: blur(10px);
    transform: translateX(100%);
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
    }
}
/* Anasayfa */

@media (max-width: 992px) {
    .rock-n-row{
        flex-direction:column-reverse;
    }
    #hero .carousel{
        max-height:30vh;
    }
}

/* Otomotiv */

@media (max-width: 992px) {
    .cerceve1,
    .cerceve2,
    .cerceve3,
    .cerceve4,
    .cerceve5{
        background-attachment:scroll;
    }
    .cerceve5{
        background-size: cover;
    }
    .otomotiv-icerik h3{
        font-size:1.5em;
    }
    .sidebar-item-yazi{
        font-size:8px;
    }
    .otomotiv-karsilama{
        padding:0;
    }
    .otomobil-cerceve{
        display:block;
        text-align:center;
        height:fit-content;
        min-height:100vh;
    }
    .otomotiv-cerceve{
        height:max-content;
        padding: 25px 0;
    }
    .otomotiv-alt div{
        flex-direction:column;
    }
    .otomotiv-alt .otomobil-resim{
        max-height:200px;
    }
    .montaj-wrapper.sag{
        flex-direction:column-reverse;
    }
    .montaj-wrapper.sol h3{
        text-align:center;
    }
    .cerceve3{
        flex-direction: column-reverse;
        display: flex;
    }
    .cerceve3 .otomobil-resim{
        max-height:300px;
    }
    .cerceve3 img{
        max-width: 100%;
        max-height: 100%;
    }
}

/* Kurumsal */

@media (max-width: 992px) {
    .section-title h2{
        font-size:.8em;
    }
    
}

/* Enerji */

@media (max-width: 992px) {
    .enerji-kart{
        display:block !important;
    }
    .enerji-kart div{
        width:100% !important;
    }
}






















.akaryakit .section-title, .icon-box, .contact-form .card, .main-content section {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
 

.akaryakit h1, .akaryakit h2 {
    color: #2c3e50;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}


.akaryakit .main-content img {
    max-width: 100%;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px auto;
}


.akaryakit .icon-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.akaryakit .icon-box:hover {
    transform: translateY(-10px);
}

.akaryakit .icon-box h4 a {
    color: #3498db;
    text-decoration: none;
}

.akaryakit .icon-box p {
    font-size: 14px;
}


.akaryakit .contact-form .card {
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}


.akaryakit .contact-form .contact-input {
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}


.akaryakit .btn-contact {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.akaryakit .btn-contact:hover {
    background-color: #2980b9;
}

.tab-content {
  > .tab-pane {
    display: none;
  }
  > .active {
    display: flex;
  }
}

.list-bar{
    display:flex;
}
.list-tab{
    flex-direction: column;
}
.yaglar-opet{
    display:flex;
    width:100%;
    height:75vh;
}
.yaglar-opet > .menu {
    flex-direction:column;
    text-align:center;
}
.yaglar-opet .nav-tabs{
    border-bottom:none;
}
.yaglar-opet a{
    border-radius:5px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.tab-content .yaglar-opet li {
    padding: 0;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    font-size:.8em;
}
.urunler{
    justify-content:center;
}
.urunler > div{
    min-width:33vh;
}
.urunler a{
    height:160px;
    width:160px;
    background-color: rgba(14, 66, 150, .65);
    margin:5px;
}
.urunler ul{
    overflow-y:scroll;
}
.urunler .tab-pane a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.aciklama .tab-pane{
    height:100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.aciklama .tab-pane > div{
    z-index:10;
    padding:10px;
}
.aciklama > div{
    overflow:hidden;
    overflow-y:scroll!important;
    flex-direction:column;
}
.aciklama table{
    overflow-x:scroll;
}
.aciklama .tab-pane h3{
    font-size:30px;
}
.aciklama .tab-pane h5{
    margin-top:20px;
}
.aciklama-content{
    text-align:center;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px
}
.aciklama-content > h3,
.aciklama-content > h5{
    width:100%;
}
.aciklama-content div{
    background-color: rgba(14, 66, 150, .65);
    border-radius:10px;
}
.bilgi-tablosu{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.bilgi-tablosu table{
    margin-bottom:20px;
}












        .ana {
            max-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            max-width: 80%;
            border-radius: 15px;
            overflow: hidden;
        }
        .ana img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .buttons-wrapper {
            position:absolute;
            padding-top: 50px;
        }

        .button-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            opacity: 0;
            filter: blur(10px);
            transform: translateY(-20%);
            animation-name: fadeIn;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
        }

        .button {
            width: calc(50% - 10px);
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 10px;
            transition: transform 0.3s ease, opacity 0.5s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .button img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        .button:hover {
            transform: scale(1.03);
        }

        .hidden {
            opacity: 0;
            pointer-events: none;
            transform: scale(0);
        }

        .small-buttons-container {
            display: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .subcategory-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 90%;
            margin: 0 auto;
            gap: 10px;
        }

        .small-button {
            width: 190px;
            height: 190px;
            background-color: #ccc;
            border-radius: 10px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            opacity: 0;
            filter: blur(10px);
            transform: translateY(-20%);
            animation-name: fadeIn;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
        }

        .small-button1{
            opacity: 0;
            filter: blur(10px);
            transform: translateY(-20%);
            animation-name: fadeIn;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
        }

        .product-detail-table tbody{
            opacity: 0;
            filter: blur(10px);
            transform: translateY(-20%);
            animation-name: fadeIn;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
        }

        .small-button:hover {
            transform: scale(1.05);
        }

        .small-button img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .overlay-text {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            text-align: center;
            font-size: 14px;
            width: calc(100% - 20px);
        }

        .back-button {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .back-button:hover {
            transform: scale(1.1);
        }

        .back-button::before {
            content: '';
            border: solid black;
            border-width: 0 3px 3px 0;
            display: inline-block;
            padding: 5px;
            transform: rotate(135deg);
            -webkit-transform: rotate(135deg);
        }
        .small-button {
            display: inline-block;
            background-color: rgba(19,93,197,0.7); /* Arka planı siyah yapar */
            transition: background-color 0.3s ease;
            color: white; /* Yazıyı beyaz yapar */
            padding: 7px; /* Buton içindeki alanın kenarlardan uzaklığı */
            border-radius: 5px; /* Dikdörtgen buton için kenar yumuşatması (opsiyonel) */
            text-align: center; /* İçerik ortalama */
            cursor: pointer; /* Tıklanabilir olduğunu göstermek için */

        }

        .small-button .button-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .small-button img {
            max-width: 100%; /* Resmi buton boyutuna göre yeniden boyutlandırır */
            height: auto;
            border-radius: 3px; /* Resmin kenarları için yumuşatma (opsiyonel) */
        }
        
        .small-button .overlay-text {
            margin-top: 10px; /* Resim ile yazı arasındaki mesafe */
            font-size: 16px; /* Yazı boyutu */
            font-weight: bold; /* Yazı kalınlığı */
            color: white; /* Yazı rengini beyaz yapar */
        }
        
        .small-button:hover {
            background-color: #fff; /* Hover durumunda arka planı biraz daha açık siyah yapar */
        }

        .tablewrapper {
            background-color: rgba(5,54,131,0.9);
            border-radius: 10px;
            overflow-y: scroll;
            height: 65vh;
        }
        .tablewrapper table {
            color:white;
        }
        .tablewrapperyazi{
            background-color: rgba(5,54,131,0.9);
            border-radius: 10px;
            color:white;
        }
        
        
            .small-button1 {
            width: 200px; /* Buton genişliği */
            height: 100px; /* Buton yüksekliği */
            background-color: rgba(19,93,197,0.7); /* Başlangıçta arka plan siyah */
            border-radius: 10px; /* Kenarları yumuşatmak için */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; /* Tıklama ve fareyle üzerine gelme animasyonu için */
        }
        
        .button-text1 {
            font-size: 18px; /* Yazı boyutu */
            color: #fff; /* Başlangıçta yazı beyaz */
            font-weight: bold; /* Yazı kalınlığı */
            font-family: 'Arial', sans-serif; /* Yazı tipi */
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.1); /* Yazı gölgesi ekleyerek daha güzel görünüm */
            transition: color 0.2s ease; /* Yazı rengini değiştirme animasyonu */
        }
        
        .small-button1 img {
            display: none; /* Resmi gizle */
        }
        
        .small-button1:hover {
            background-color: #fff; /* Fareyle üzerine gelindiğinde arka plan beyaz olsun */
            color: #000; /* Fareyle üzerine gelindiğinde yazı siyah olsun */
            border-color: red; /* Çerçeve kırmızı kalır */
        }
        
        .small-button1:hover .button-text1 {
            color: #000; /* Fareyle üzerine gelindiğinde yazı rengi siyah olsun */
        }
        
        .small-button1:active {
            transform: scale(0.95); /* Tıklama anında butonu hafifçe küçült */
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Tıklama sırasında gölge ekle */
        }










