@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');

a {
    text-decoration: none !important;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    background: #f8f8f8;
    line-height: 1.8;
    font-weight: 400;
}

.top-header {
    background: #18233E;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.bg-enco {
    background: #18233E;
}

.nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #d1d1d1;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
}

.nav-link:hover {
    color: #d1d1d1;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
}

/* Hero
==================================== */

.hero-home {
    height: 400px;
    width: 100%;
    display: table;
}

.hero-home.bg-mockup {
    background: #3f4079 url(../images/bg.svg) no-repeat center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.hero-home .content {
    display: table-cell;
    padding: 0;
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    font-size: 1.3125rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6), transparent);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

.hero-home .content h3 {
    margin: 0;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
@media (max-width: 768px) { /* Örnek bir mobil genişlik sınırı */
    .hero-home .content {
        font-size: 18px; /* Mobilde daha küçük bir font boyutu */
    }

    .hero-home .content h3 {
        font-size: 40px; /* Başlık için daha küçük bir font boyutu */
    }
    .cart h5{
        font-size: 12px;
    }
    .cart p{
        font-size: 12px;
    }
}

/* Hero Buttons */

a.btn-1, .btn-1 {
    border: none;
    color: #fff;
    background: #ff7b79;
    cursor: pointer;
    padding: 7px 20px;
    display: inline-block;
    outline: none;
    font-size: 14px;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    font-weight: 500;
}

a.btn-1:hover, .btn-1:hover {
    background: #ffda8f;
    color: #333;
}

a.btn-1.medium, .btn-1.medium {
    padding: 12px 45px;
    font-size: 16px;
}

/* Hero Animations */

@keyframes pop-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/* Title */

.hero-home .content h3.animated, #hero_video .content h3.animated {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
}

/* Paragraph */

.hero-home .content p.animated, #hero_video .content p.animated {
    animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
}

/* Button */

.hero-home .content .btn-1.animated, #hero_video .content .btn-1.animated {
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
}

/* Multiple border */

.border-multiple > span {
    display: inline-block;
}

.border-multiple > span:not(:last-child) {
    margin-right: 8px;
}

.border-multiple > span.first {
    width: 6px;
    height: 3px;
    background-color: #ff7b79;
}

.border-multiple > span.second, .border-multiple > span.third {
    width: 25px;
    height: 3px;
    background-color: #ff7b79;
}

/* Services
==================================== */

.box {
    text-align: center;
    background: #fff;
    padding: 60px 30px 30px 30px;
    -webkit-box-shadow: 0px 3px 0px 0px #f0f2f4;
    -moz-box-shadow: 0px 3px 0px 0px #f0f2f4;
    box-shadow: 0px 3px 0px 0px #f0f2f4;
    color: #555;
    margin-bottom: 30px;
}

.box:hover {
    -webkit-box-shadow: 0px 3px 0px 0px #ff7b79;
    -moz-box-shadow: 0px 3px 0px 0px #ff7b79;
    box-shadow: 0px 3px 0px 0px #ff7b79;
    cursor: pointer;
}

.box .icon {
    width: 2.8rem;
    height: 2.8rem;
    margin: 0 auto;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    color: #ff7b79;
}

.box p {
    font-size: 14px;
    font-weight: 400;
}

.service-title, .contact-title {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Multiple border */

.border-multiple > span {
    display: inline-block;
}

.border-multiple > span:not(:last-child) {
    margin-right: 8px;
}

.border-multiple > span.first {
    width: 6px;
    height: 3px;
    background-color: #ff7b79;
}

.border-multiple > span.second, .border-multiple > span.third {
    width: 25px;
    height: 3px;
    background-color: #ff7b79;
}

/* Footer
==================================== */

footer.main-footer {
    padding-top: 60px;
    padding-bottom: 30px;
    color: #555;
    background: #fff;
    border-top: 1px solid #ddd;
}

footer.main-footer ul.nav-links li i {
    font-size: 13px;
}

.footer-heading {
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-link {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.footer-link:hover {
    text-decoration: underline;
}

.contact-links i {
    color: #ff7b79;
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

a.social-link {
    color: #999;
    opacity: 0.6;
    font-size: 20px;
    font-weight: 400;
    margin-right: 10px;
}

a.social-link:visited {
    color: #999;
}

.social-links li {
    display: inline-block;
}

footer #copy {
    text-align: right;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #999;
}

/* Sub Footer Links */

ul#subFooterLinks {
    margin: 0;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #999;
}

ul#subFooterLinks li {
    display: inline-block;
    margin-right: 15px;
}

ul#subFooterLinks li:first-child {
    margin-right: 20px;
}

ul#subFooterLinks li:last-child:after {
    content: "";
}

ul#subFooterLinks li a {
    color: #999
}

ul#subFooterLinks li a:hover {
    text-decoration: underline;
}

ul#subFooterLinks li:after {
    content: "|";
    font-weight: 300;
    position: relative;
}

ul#subFooterLinks i {
    color: #ff7b79;
}

/* Form Buttons */

.btn-form-func {
    background: #ff7b79;
    border-radius: 0;
    border: 2px solid #ff7b79;
    color: #fff;
    display: inline-block;
    overflow: hidden;
    padding: 12px 30px 12px 16px;
    position: relative;
    text-decoration: none;
    line-height: 1;
    width: 100%;
    font-weight: 600;
    margin-bottom: 10px;
}

.btn-form-func:hover {
    color: #fff;
}

.btn-form-func .btn-form-func-content {
    font-size: 1em;
    line-height: 1.2;
    padding: 0 15px;
    position: relative;
    right: 0;
    transition: right 300ms ease;
    display: block;
    text-align: left;
}

.btn-form-func .icon {
    border-left: 1px solid #fff;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transition: all 300ms ease;
    transform: translateY(-50%);
    width: 58px;
    height: 70%;
}

.btn-form-func .icon i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.btn-form-func:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: transparent;
    opacity: 0;
    transition: opacity 300ms ease;
}

.btn-form-func:hover .btn-form-func-content {
    right: 100%;
}

.btn-form-func:hover .icon {
    border-left: 0;
    font-size: 1.4em;
    width: 100%;
}

.btn-form-func:hover:after {
    opacity: .2;
}

.btn-form-func.btn-form-func-alt-color {
    background: #fff;
    border-color: #ff7b79;
    color: #ff7b79 !important;
}

.btn-form-func.btn-form-func-alt-color .icon {
    border-left-color: #ff7b79;
}

.btn-form-func.btn-form-func-alt-color:after {
    background-color: transparent;
}

/* Checkboxes */

label.cbx.terms {
    margin: 0;
    padding: 0;
    border: 0;
    height: 22px;
}

label.cbx {
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    border: solid 1px #ddd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    height: 45px;
    padding: 10px 15px;
    width: 100%
}

.cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.cbx span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
}

.cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
    margin-right: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ff7b79;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.cbx:hover span:first-child {
    border-color: #ff7b79;
}

.inp-cbx {
    display: none;
}

.inp-cbx:checked+.cbx span:first-child {
    background: #ff7b79;
    border-color: #ff7b79;
    animation: wave 0.4s ease;
}

.inp-cbx:checked+.cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.inp-cbx:checked+.cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

/* Terms Link */

.terms-link, .terms-link:visited {
    text-decoration: none;
    color: #ff7b79;
    margin-left: 5px;
    transition: none;
}

.terms-link:hover {
    color: #ff7b79;
    text-decoration: underline;
}

/* Form validation */

.parsley-errors-list {
    font-size: 10px !important;
    text-transform: uppercase;
    border: 1px solid #ff7b79;
    background-color: #ff7b79;
    color: #fff;
    padding: 2px 0 0 3px !important;
    margin: 10px 0 10px 0 !important;
    list-style-type: none;
    opacity: 0;
}

.parsley-errors-list.filled {
    opacity: 1;
}

.parsley-errors-list:before {
    content: '';
    display: block;
    margin-top: -9px;
    pointer-events: none;
    position: absolute;
    border-bottom: solid 6px #ff7b79;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
}

/* Order Summary
==================================== */

/* Header */

#orderContainer h3 {
    font-size: 16px;
    font-weight: 700;
    color: #555;
    margin-bottom: 30px;
}

/* List */

#orderContainer span {
    font-size: 14px;
    font-weight: 500;
}

#orderContainer ul {
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

#orderSumList li {
    font-family: 'Karla', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

#orderSumList li i {
    color: #ff7b79;
}

#orderContainer ul li span.price, .price {
    float: right;
}

#orderContainer .total-container {
    border-top: 2px dotted #ddd;
    border-bottom: 2px dotted #ddd;
    padding: 10px 0;
    margin: 10px 0;
}

/* Order Summary Footer */

.footer {
    font-size: 13px;
    color: #ccc;
}

.footer i {
    color: #f15e75;
}

.footer a {
    text-decoration: underline;
}

.footer small {
    color: #555;
}

.secim{
    transition: all 0.2s ease-in-out;
    background-color: #fff!important;
}

.secim:hover{
    transform: scale(1.01);
    box-shadow: 0 0 11px rgba(33,33,33,.2);}
