/**
 @Cascading Stylesheet -> jbm.css
 @author Doğukan Akkaya
**/

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&display=swap');
/* /Imports */

/* Variables */
:root {
    --main-color: #e30613;
    --gray-border: 1px solid #80808040;
    --header-height: 55px;
}

/* /Variables */

/* Resets */
html {
    height: 100%;
}

body {
    height: 100%;
    font-family: 'Open Sans', sans-serif;
}

main {
    height: 100%;
}

a {
    text-decoration: none !important;
    color: inherit;
}

a:hover {
    color: var(--main-color) !important;
    transition: all .5s;
}

ul, ol {
    list-style: none;
}

/* /Resets */

/* Not Found */
.not-found {
    height: calc(97vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.not-found img {
    width: 100%;
}

.not-found p {
    font-size: 25px;
    color: #777;
}

.not-found i {
    font-size: 30px;
    color: orange;
}

.not-found h4 {
    font-weight: bold;
}

/* /Not Found */

/* Includes for all page */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #0000005e;
    opacity: 0;
    visibility: hidden;
}

.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-size: 500px;
    background-repeat: no-repeat;
    background-color: #FFF;
    background-position: center;
    transition: opacity 0.25s linear;
}

.preloader.fade {
    width: 0;
    opacity: 0;
}

.req-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-repeat: no-repeat;
    background-color: #FFF;
    background-position: center;
    transition: opacity 0.25s linear;
    display: none;
}

.req-preloader i {
    font-size: 40px;
}

.toast {
    width: 380px;
    max-width: unset;
}

.closed {
    display: none;
}

.mt-10em {
    margin-top: 10em;
}

.no-column {
    column-count: unset !important;
}

.tag {
    padding: 2px 10px;
    background: var(--main-color);
    color: white;
    margin: 6px;
    display: inline-block;
}

.tag:hover {
    background: var(--main-color);
    color: white !important;
}

/* Breadcrumb */
.webpark-breadcrumb {
    margin-top: 1rem;
}

.webpark-breadcrumb .breadcrumb {
    background-color: unset;
    border-bottom: var(--gray-border);
}

.webpark-breadcrumb .breadcrumb-item.active {
    color: var(--main-color);
}

/* /Breadcrumb */
/* /Includes for all page */

/* Plugin CSS */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

/* /Plugin CSS */

/* Header */
header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 999;
    height: var(--header-height);
}

header .row {
    height: 100%;
    align-items: center;
}

.hamburger-icon-open, .hamburger-icon-close {
    display: inline-block;
    cursor: pointer;
}

.hamburger-icon-close {
    margin-top: 10px;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 2px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.hamburger-icon-open .bar1 {
    width: 35px;
}

.hamburger-icon-open .bar2 {
    width: 25px;
}

.hamburger-icon-open .bar3 {
    width: 15px;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-5px, 5px);
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-7px, -6px);
}

.close-menu {
    position: relative;
    left: 12px;
    top: 3px;
    cursor: pointer;
}

.nav-toggle-title {
    display: flex;
    align-items: center;
    float: left;
    padding: 7px 2px;
}

.nav-toggle-title .logo {
    left: 40px;
    position: absolute;
    top: 0px;
}


.nav-toggle-title .logo img {
    width: 90px;
}

.right-top-menu {
    list-style: none;
    float: right;
    margin: 0;
}

.right-top-menu li {
    display: inline-block;
}

.right-top-menu a {
    display: inline-block;
    padding: 12px 12px;
    color: black;
    font-weight: 600;
    outline: none;
    font-size: 14px;
}

.right-top-menu a:hover {
    color: inherit !important;
}

.right-top-menu a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    background: var(--main-color);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.right-top-menu a:hover:after {
    width: 100%;
    left: 0;
}

.right-top-menu .language {
    color: var(--main-color);
}

.left-nav {
    opacity: 0;
    visibility: hidden;
    width: 300px;
    transition: all .5s;
    position: fixed;
    overflow-x: hidden;
    background: white;
    left: 0;
    height: 100%;
    top: 0;
    z-index: 99999;
}

.left-nav-menus {
    padding: 0 15px;
}

.left-nav-menus li {
    display: flex;
}

.left-nav-menus li a {
    color: black;
    font-weight: 600;
    outline: none;
    border-bottom: var(--gray-border);
    width: 100%;
    padding: 7px 0;
}

.left-nav .nav-bottom {
    position: absolute;
    bottom: 0;
}

.left-nav-links {
    padding: 0 0 20px 0;
    margin: 0 30px;
    overflow: auto;
    border-bottom: var(--gray-border);
}

.left-nav-links li {
    padding: 6px 0;
    float: left;
    width: 50%;
    font-size: 13px;
}

.left-nav-links li a {
    color: black;
    outline: none;
}

.left-nav-social {
    padding: 0 30px;
    overflow: auto;
    display: flex;
    justify-content: flex-end;
}

.left-nav-social li {
    float: left;
    padding: 7px;
}

.left-nav-social li:first-child {
    padding-left: 0;
}

.left-nav-social li a {
    outline: none;
}

/* /Header */

/* Social Icons */
.fa-facebook {
    color: #4267B2;
}

.fa-twitter {
    color: #00acee;
}

.fa-instagram {
    color: #f2003c;
}

.fa-youtube {
    color: #c4302b;
}

/* /Social Icons */

/* Home Slider */
.sticky-slider {
    position: sticky;
    top: 55px;
}

.jbm-slider .swiper-slide {
    height: 93vh;
    background-repeat: no-repeat;
}

.slider-content {
    position: absolute;
    padding: 15px;
    background: #fff;
    width: 400px;
    left: 30px;
    bottom: 30px;
}

.slider-content .category {
    font-size: 11px;
}

.slider-content h1 {
    font-size: 25px;
    font-weight: bold;
}

.slider-content p {
    font-size: 15px;
}

.slider-buttons {
    position: absolute;
    top: -24px;
    background: #ffffffa8;
    width: 90px;
    left: 0;
    text-align: center;
}

.slider-buttons span {
    font-size: 12px;
}

.slider-buttons .prev-button, .next-button {
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
}

.slider-buttons .prev-button:hover, .next-button:hover {
    color: #757575;
}

/* /Home Slider */

/* Home Body */
.half-content, .full-content {
    margin-bottom: 30px;
}

.half-content .content-image img {
    width: 100%;
    height: 345px;
    object-fit: cover;
    transition: .5s ease-in-out;
}

.half-content .content-image img:hover {
    filter: grayscale(100%);
}

.full-content .content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.full-content .content-image img:hover {
    animation: flash 1.5s;
}

.half-content .content-info span, .full-content .content-info span {
    font-size: 10px;
    font-weight: 400;
}

.half-content .content-info h1 {
    font-size: 13px;
    font-weight: bold;
}

.full-content .content-info h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.seperator-content {
    margin: 20px 0;
    padding: 25px 0;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

.seperator-content h1 {
    font-style: italic;
    font-weight: bold;
}

.seperator-content a {
    color: black;
    font-weight: 500;
    font-size: 13px;
}

/* Key Frame Animations */
@keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}

/* /Key Frame Animations */
/* /Home Body */

/* Sidebar */
.right-sidebar::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.right-sidebar {
    padding: 15px;
    border-left: 1px solid #8080808c;
    position: fixed;
    top: 0;
    z-index: 999;
    overflow-y: scroll;
    height: 100vh;
}

.sidebar-title h1 {
    font-size: 13px;
    text-align: center;
    border-bottom: var(--gray-border);
    padding-bottom: 15px;
    margin-top: 9px;
}

.sidebar-item:not(:last-child) {
    border-bottom: var(--gray-border);
    padding-bottom: 20px;
}

.sidebar-item .number {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin: 10px 0;
}

.sidebar-item h1 {
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
    text-align: center;
    padding: 0 15px;
}

.sidebar-item p {
    font-size: 13px;
    line-height: 25px;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 0;
}

.sidebar-item .read-more {
    font-size: 13px;
    display: flex;
    justify-content: center;
    color: #686868;
}

/* /Sidebar */

/* About Body */
.about-top {
    padding: 2rem 0;
}

.about-top p {
    font-size: 15px;
}

.about-item {
    padding: 2rem 0;
    border-top: 1px solid #aaaaaa;
}

.about-title {
    font-size: 13px;
    font-weight: bold;
    padding: 0;
    color: #666666;
    margin-top: 5px;
}

.about-item-children {
    padding-bottom: 1rem;
    column-count: 2;
    column-gap: 1.5em;
}

.about-item-children span {
    font-size: 12px;
    font-weight: 500;
}

.about-item-children p {
    font-size: 12px;
}

.about-item-children .about-address {
    margin-bottom: 1rem;
}

.about-item-children .about-address h2 {
    font-size: 12px;
    margin-bottom: 1px;
}

/* /About Body */

/* Contact Body */
.map-frame {
    width: 100%;
    height: 97.5%;
}

.contact-right {
    margin: 5% 0 0 5%;
    width: 75%;
}

.contact-right .small-titles {
    margin-bottom: 20px;
}

.contact-right .small-titles h2 {
    font-size: 18px;
    font-weight: bold;
}

.contact-right .social ul {
    padding: 0;
}

.contact-right .social li {
    display: inline-block;
}

.contact-right .social li a {
    padding: 5px 25px 5px 0;
}

.contact-right .social li a i {
    color: #000;
    font-size: 20px;
}

.contact-right .mails p {
    font-weight: bold;
    margin-bottom: 2em;
}

.contact-right .mails a {
    text-decoration: underline !important;
}

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

.contact-form input, .contact-form textarea {
    border-radius: 0;
}

.contact-form h1 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: var(--gray-border);
}

.contact-form button[type=submit] {
    padding: 10px 15px;
    border: none;
    outline: none;
    width: 100%;
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
    transition: all .5s ease;
}

.contact-form button[type=submit]:hover {
    color: var(--main-color);
    background: white;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(236, 1, 1, 0.25);
    border-color: var(--main-color);
}

/* /Contact Body */

/* Projects */
.projects-list {
    padding: 10px 0;
}

.projects-title {
    font-size: 13px;
    font-weight: bold;
    border-bottom: 1px solid rgb(133, 133, 133);
    padding: 5px 0;
    margin: 0;
    cursor: pointer;
}

.projects-title span {
    position: absolute;
    right: 15px;
}

.projects-list ul {
    padding: 0;
    margin: 0;
}

.projects-list li {
    margin: 4px 0;
}

.projects-list li:last-child {
    border-bottom: 1px solid rgb(133, 133, 133);
    padding-bottom: 5px;
}

.projects-list li a {
    font-size: 13px;
    color: #444 !important;
    display: block;
    width: 100%;
    transition: unset;
}

.projects-list li a:hover {
    color: #fff !important;
    background: #000;
    padding: 0 3px;
}

.projects-list li a.hovered {
    color: #fff !important;
    background: #000;
    padding: 0 3px;
}

.project-img {
    margin-bottom: 15px;
    background: rgb(51, 51, 51);
}

.project-img img {
    width: 100%;
    position: relative;
    height: 250px;
    object-fit: cover;
}

.project-img a:hover img {
    left: -4px;
    top: -3px;
}

.project-img a.hovered img {
    left: -4px;
    top: -3px;
}

.detail-area {
    width: 100%;
    height: 100%;
    display: none;
}

.detail-area .img-container {
    height: 100%;
}

.detail-area .img-container img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.project-show {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
}

.detail-content {
    position: fixed;
    bottom: 50px;
    right: -935px;
    background: #ffffffc2;
    transition: all .5s;
    cursor: pointer;
}

.detail-content.half-open {
    right: -580px;
}

.detail-content.open {
    right: 0;
}

.detail-content-icon {
    font-size: 23px;
    padding: 5px 10px;
    background: #ffffffc2;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    transition: .5s;
    right: 935px;
}

.detail-content-full {
    padding: 30px 15px;
    float: right;
    transition: width .5s;
    display: inline-block;
    width: 935px;
}

.detail-content-full h1 {
    font-size: 22px;
}

.detail-content-full .paragraph {
    column-count: 2;
    column-gap: 1.5em;
}

.detail-content-full p {
    font-size: 13px;
}

.detail-content-full .right span {
    font-size: 12px;
}

.detail-content-full .right p {
    font-size: 11px;
}

/* /Projects */

/* Detail */
.detail-info {
    border-top: 2px solid black;
}

.detail-info {
    border-bottom: 2px solid black;
}

.detail-info .left {
    padding: 10px 0;
}

.detail-info .left h1 {
    font-size: 18px;
    font-weight: bold;
}

.detail-info .left div a {
    font-size: 12px;
    color: #7b7a7a;
    padding-bottom: 10px;
}

.detail-info .right {
    padding: 10px 15px;
    border-left: 1px solid black;
}

.detail-info .right:first-child {
    border-bottom: 1px solid black;
}

.detail-info .right p {
    font-size: 14px;
}

.detail-info .right-top span {
    font-size: 13px;
    color: #7b7a7a;
}

.detail-info .right-top a {
    font-size: 13px;
    font-weight: bold;
}

.detail-info .right-top i {
    margin-right: 7px;
    font-size: 14px;
}

.detail-rest img {
    width: 100%;
}

.detail-rest .detail-text {
    padding: 20px 0;
    font-family: 'Ubuntu', sans-serif;
}

.detail-rest .detail-text h3 {
    font-size: 1.25em;
    margin-bottom: 15px;
}

.detail-rest .detail-text h4 {
    font-size: 1em;
    margin-bottom: 15px;
}

.detail-rest .detail-text h3::before {
    margin-left: -25px;
    font-size: 28px;
    margin-top: -5px;
    content: "#";
    font-weight: 400;
    position: absolute;
    color: #ff2d20;
    opacity: .6;
}

.detail-rest .detail-text h4::before {
    margin-left: -18px;
    font-size: 17px;
    content: "#";
    font-weight: 400;
    position: absolute;
    color: #ff2d20;
    opacity: .6;
}

.detail-rest .detail-text blockquote::before {
    margin-left: -15px;
    font-size: 17px;
    content: "!";
    font-weight: 400;
    position: absolute;
    color: #ff2d20;
    opacity: .6;
}

.detail-rest .detail-text pre[class^=" language-"] {
    background: #fbfbfd;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075);
    font-size: .8rem;
}

.detail-rest .detail-text p {
    color: rgba(9, 9, 16, .7);
    font-size: .9rem;
    line-height: 1.8em;
}

.detail-rest .detail-text li {
    position: relative;
    display: block;
    padding-left: 1.25em;
    font-size: .89em;
    line-height: 1.714em;
}

.detail-rest .detail-text li::before {
    content: '*';
    position: absolute;
    left: 0;
    width: 9px;
    height: 10px;
    color: #ff2d20;
}

.detail-area .slide-pagination {
    position: absolute;
    right: 0;
    top: 100px;
}

.detail-area .slide-pagination ul {
    width: 70px;
    margin: 0;
    padding: 0;
}

.detail-area .slide-pagination li {
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 5px 10px;
    color: white;
    background-color: rgb(136, 136, 136);
    position: absolute;
    right: -20px;
    transition: all .5s ease;
}

.detail-area .slide-pagination li:hover {
    right: 0;
}

/* /Detail */

/* Services */
.services-top h1 {
    font-weight: bold;
    float: left;
    font-size: 34px;
    transition: all .75s ease;
}

.services-top.is-fixed {
    position: fixed;
    top: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9;
    width: 100%;
}

.services-top.is-fixed h1 {
    font-size: 0;
    opacity: 0;
    visibility: hidden;
}

.services-top ul {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 15px;
}

.services-top li a {
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.services-top li:first-child a {
    padding-left: 0;
}

.service-single .service-info .category {
    font-size: 10px;
    font-weight: 400;
}

.service-single .service-info h1 {
    font-size: 14px;
    font-weight: bold;
}

.service-single .service-info p {
    font-size: 11px;
}

.service-single .service-img img {
    width: 100%;
    height: 375px;
    object-fit: cover;
}

.services-detail-w60 {
    width: 60%;
    margin-top: 3rem;
}

.services-detail-w60 .info-top::after {
    content: '';
    display: block;
    width: 180px;
    height: 1px;
    background: #e2e2e2;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.services-detail-w60 h1 {
    font-size: 30px;
    color: black;
    font-weight: 600;
}

.services-detail-w60 .info-top div {
    font-style: italic;
    font-size: 20px;
    line-height: 30px;
}

.services-detail-w60 .info-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-detail-w60 .info-bot ul {
    margin: 0;
    padding: 0;
}

.services-detail-w60 .info-bot ul.left li {
    font-size: 14px;
}

.services-detail-single {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.services-detail-img {
    margin-top: 20px;
}

.services-detail-img img {
    width: 100%;
}

.services-detail-img p {
    width: 60%;
    font-size: 12px;
    color: #4444449e;
    margin-top: 5px;
}

.services-detail-content {
    width: 60%;
    padding: 40px 0;
    box-shadow: -6px 0 white, 10px 0 white, 3px 5px 7px rgba(0, 0, 0, 0.25);
    line-height: 30px;
}

.services-detail-content img {
    max-width: 100%;
    object-fit: cover;
}

.active-service {
    color: var(--main-color);
}

/* /Services */

/* Blog */
.blog-top {
    padding: 10px 0;
    overflow: auto;
}

.blog-top h1 {
    font-weight: bold;
    font-size: 35px;
}

.blog-top.is-fixed {
    position: fixed;
    top: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9;
    width: 100%;
}

.blog-filter select {
    display: inline-block;
    padding: 5px 13px;
    margin-right: 1rem;
}

.blog-filter select:focus {
    box-shadow: 0 0 0 0.2rem rgba(236, 1, 1, 0.25);
    border-color: var(--main-color);
    outline: none;
}

.blog-single {
    padding-bottom: 2rem;
}

.blog-single .blog-info {
    padding: 2rem;
}

.blog-single .blog-info .category {
    font-size: 10px;
    font-weight: 400;
}

.blog-single .blog-info h1 {
    font-size: 17px;
    font-weight: bold;
}

.blog-single .blog-info p {
    font-size: 16px;
    font-weight: bold;
    padding-top: 7px;
}

.blog-single .blog-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-single .blog-info .buttons {
    padding-top: 1rem;
}

.blog-single .blog-date {
    position: absolute;
    padding: 8px 15px;
    background: black;
    color: white;
}

.comment-item {
    margin: 25px 0;
    padding: 25px 0;
}

.comment-item.reply {
    margin-left: 65px;
}

.comment-item:not(.reply) {
    border-bottom: 1px solid #bfbfbf78;
}

.comment-count {
    font-size: 21px;
    color: gray;
}

.comment-item .avatar {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #d2d2d2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: maroon;
    float: left;
}

.comment-detail {
    padding-left: 65px;
}

.comment-detail h1 {
    font-size: 18px;
}

.comment-detail p {
    font-size: 14px;
    color: gray;
}

.comment-detail a {
    font-size: 14px;
}

/* /Blog */

/** Ek **/
.olstyle > ul, ol {
    list-style: revert
}

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

.bottom-kvkk .right-top-menu a {
    font-size: 11px;
}

.bottom-kvkk .right-top-menu {
    float: none;
    padding: 0;
}

/** Ek **/


/* Media */
/* Bigger Than 1920px */
@media (min-width: 1921px) {
    .nav-toggle-title .logo {
        left: 70px;
    }
    /* Header */
    .nav-toggle-title .logo {
        padding-left: 20px;
    }

    /* /Header */
    /* Projects */
    .project-img img {
        height: 320px;
    }

    /* /Projects */
}
@media (max-width: 1921px) {
    .nav-toggle-title .logo {
        left: 70px;
    }
}
/* /Bigger Than 1920px */

/* Smaller Than 1440px */
@media (max-width: 1440px) {
    /* Header */
    .nav-toggle-title .logo {
        left: 60px;
    }

    /* /Header */
    /* Contact Body */
    /* /Contact Body */
    /* Home Slider */
    .jbm-slider .swiper-slide {
        height: 90vh;
    }

    /* /Home Slider */
    /* Detail */
    .detail-bottom {
        position: relative;
        bottom: 0;
        width: 100%;
        text-align: center;
    }

    /* /Detail */
}

/* /Smaller Than 1440px */

/* Smaller Than 1024px */
@media (max-width: 1024px) {
    /* Header */
    header {
        height: 50px;
    }

    .right-top-menu a {
        padding: 10px 4px;
        font-size: 12px;
    }

    .nav-toggle-title h1 {
        font-size: 25px;
    }

    /* /Header */
    /* Home Body */
    .half-content .content-image img {
        height: 200px;
    }

    .full-content .content-image img {
        height: 250px;
    }

    .half-content .content-info h1 {
        font-size: 14px;
    }

    .full-content .content-info h1 {
        font-size: 21px;
    }

    .half-content .content-info span, .full-content .content-info span {
        font-size: 10px;
    }

    .seperator-content h1 {
        font-size: 1.5em;
    }

    .seperator-content a {
        font-size: 11px;
    }

    /* /Home Body */
    /* Contact Body */
    .contact-right {
        margin: 0;
        width: 100%;
    }

    /* /Contact Body */
    /* About Body */
    /* /About Body */
    /* Sidebar */
    .sidebar-title h1 {
        font-size: 12px;
    }

    .sidebar-item h1 {
        font-size: 13px;
        padding: 0 5px;
        line-height: 21px;
    }

    .sidebar-item p {
        font-size: 11px;
        line-height: 20px;
        padding: 0 5px;
    }

    .sidebar-item a {
        font-size: 11px;
    }

    /* /Sidebar */
    /* Home Slider */
    .jbm-slider .swiper-slide {
        height: 59vh;
    }

    .slider-content {
        width: 300px;
        left: 15px;
        bottom: 15px;
    }

    .slider-content h1 {
        font-size: 20px;
    }

    .slider-content p {
        font-size: 13px;
    }

    .slider-content .category {
        font-size: 10px;
    }

    .sticky-slider {
        top: 45px;
    }

    /* /Home Slider */
    /* Projects */
    .detail-content {
        right: -750px;
    }

    .detail-content-full {
        width: 750px;
    }

    .detail-content-icon {
        right: 750px;
    }

    /* Projects */
}

/* /Smaller Than 1024px */

/* Smaller Than 768px */
@media (max-width: 768px) {

    /* Header */
    header {
        background-color: white !important;
    }

    .nav-toggle-title h1 {
        font-size: 22px;
    }

    .right-top-menu {
        display: none;
    }

    /* /Header */
    /* Home Body */
    .half-content .content-image img {
        height: 300px;
    }

    .full-content .content-image img {
        height: 350px;
    }

    /* /Home Body */
    /* Sidebar */
    .right-sidebar {
        width: 32%;
        right: 0;
    }

    /* /Sidebar */
    /* Home Slider */
    .sticky-slider {
        margin-bottom: 30px;
    }

    /* /Home Slider */
    /* Services */
    .services-top h1 {
        font-size: 28px;
    }

    .services-top ul {
        padding: 10px;
        align-items: flex-start;
    }

    .services-top li a {
        padding: 0 5px;
        font-size: 11px;
    }

    /* /Services */
    /* Projects */
    .project-show {
        position: unset;
    }

    .detail-content {
        position: unset;
    }

    .detail-content-full {
        float: unset;
        width: 100%;
        display: block;
    }

    .detail-content-full .paragraph {
        padding-bottom: 1rem;
    }

    .detail-content-full .col-lg-9 {
        border-right: 0 !important;
    }

    .detail-content-icon {
        display: none;
    }

    .detail-area .slide-pagination {
        margin-top: 5px;
        top: unset;
    }

    .detail-area .slide-pagination li a {
        right: -19px;
    }

    /* Projects */
}

/* /Smaller Than 768px */

/* Smaller Than 500px */
@media (max-width: 500px) {
    /* Header */
    .left-nav.open {
        width: 200px;
    }

    .left-nav-links li {
        padding: 7px 0;
        font-size: 11px;
    }

    /* /Header */
    /* Contact Body */
    .contact-right {
        margin-top: 15px;
    }

    /* /Contact Body */
    /* About Body */
    /* /About Body */
    /* Home Slider */
    .jbm-slider .swiper-slide {
        height: 88vh;
    }

    .slider-content h1 {
        font-size: 17px;
    }

    .slider-content p {
        font-size: 11px;
    }

    .slider-content .category {
        font-size: 9px;
    }

    /* /Home Slider*/
    /* Sidebar */
    .right-sidebar {
        height: unset;
        position: unset;
        width: 100%;
        overflow-y: hidden;
        margin-bottom: 15px;
        border: 1px solid #8080808c;
    }

    /* /Sidebar */
    /* Projects */
    /* /Projects */
    /* Services */
    .services-top {
        padding-bottom: 15px;
    }

    .services-top h1 {
        float: unset;
    }

    .services-top ul {
        display: block;
        padding: 0 !important;
    }

    .services-top li a {
        padding: 0;
    }

    .services-detail-w60 {
        width: 100%;
    }

    .services-detail-w60 .info-top div {
        line-height: 35px;
    }

    .services-detail-content {
        width: 100%;
    }

    /* /Services */
    /* Detail */
    .detail-info {
        border-bottom: 0;
    }

    .detail-rest .detail-text {
        padding: 20px;
    }

    .detail-area .slide-pagination {
        position: relative;
    }

    /* /Detail */
    .webpark-breadcrumb .breadcrumb-item {
        padding: 0 .5rem .5rem 0;
    }
}

/* /Smaller Than 500px */
/* /Media */


/* Later Extra */
.cmplz-slider-checkbox input:checked + .cmplz-slider {
    background-color: #e20814 !important;
}
