@font-face {
    font-family: segoe print;
    src: url(./assets/fonts/segoepr.ttf);
  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
    ;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
    transition: 0.3s ease-out;
}

a {
    color: #262626;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    margin: auto;
}


/* Nav */

.main-nav {
    max-width: 100%;
    margin: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.57rem;
    padding: 1.3rem 0;
    font-size: 0.85rem;
}



.logo-src img {

height: 3rem;

}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    padding: 0 0.60rem;
}

.main-nav ul li a {
    font-size: 14px;
    padding-bottom: 0.15rem;
}

.main-nav h2 {
    font-weight: 700;
    font-size: 19px;
}

.main-nav ul li i {
    font-size: 1.3rem;
}

.main-nav ul li a:hover {
    color: #007ba0;
}

.main-nav ul .main-menu {
    flex: 1;
    margin: 0 auto;
}

.menu-btn {
    cursor: pointer;
    position: absolute;
    top: 1.3rem;
    right: 2rem;
    z-index: 2;
    display: none;
}

.btn {
    cursor: pointer;
    display: inline-block;
    border: 0;
    font-weight: normal;
    padding: 0.5rem 1.3rem;
    background: #2d9cdb;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    margin-top: 0.75rem;
}

.btn:hover {
    opacity: 0.9;
}

.dark {
    color: #fff;
}

.dark .btn {
    background-color: #f4f4f4;
    color: #333;
    font-weight: 500;
}


/* Banner */

section.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-flow: column;
}

section.banner .img-slide {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.slider-navigation {
    z-index: 888;
    position: absolute;
    bottom: 15%;
    right: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF6C6C;
    padding: .5rem 1rem;
    border-radius: 5px;
    opacity: 0.65;
}

.slider-navigation .nav-btn {
    width: .7rem;
    height: .7rem;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    transition: 0.3s ease;
}

.slider-navigation .nav-btn.active {
    background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child) {
    margin-right: 1.3rem;
}

.slider-navigation .nav-btn:hover {
    transform: scale(1.25);
}

.img-slide {
    opacity: 0;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.img-slide.active {
    opacity: 1;
    clip-path: circle(150% at 0 50%);
    transition: 3s ease;
}

.banner .content {
    display: flex;
    flex-direction: column;
    width: 33%;
    z-index: 899;
    color: #fff;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
    letter-spacing: 0.35rem;
    margin: 18% 0 0 2rem;
    opacity: 0.75;
}

.banner .content p {
    font-size: 1.25rem;
    background-color: #FF6C6C;
    padding: 0.75rem;
}

.banner .content h1 {
    background-color: #FF6C6C;
    padding: 0.75rem;
    font-weight: 600;
}


/* General Search */

section.general-search {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 0;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
    justify-content: space-around;
}

section.general-search .box-container {
    display: flex;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: center;
    padding: 4.5rem 3rem;
}

section.general-search .box-container .general-box {
    background: #f0f0f0;
    padding: 2.5rem;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 .65rem .65rem 0;
    width: 23%;
}

section.general-search .box-container .general-box:hover {
    background: #e2e2e2;
}

section.general-search .box-container .general-box i {
    font-size: 2.6rem;
    color: rgb(73, 73, 73);
}

section.general-search .box-container .general-box h6 {
    font-size: 1.0rem;
    font-weight: 600;
    text-transform: uppercase;
}


/* Double Card Area */

section.double-area {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 2rem;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
}

section .double-card {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 7%;
}

section .double-card .double-card-content {
    width: 75%;
    text-align: center;
}

section .double-card .double-card-content h1 {
    font-weight: 600;
    font-size: 19px;
}

section .double-card .double-card-content p {
    letter-spacing: 1.2px;
    padding: .55rem 0;
    font-size: 12.5px;
    height: 7vh;
}

section .double-card .double-card-content p:not(.p-header) {
    margin-bottom: 5rem;
}

section.double-area img {
    position: relative;
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    opacity: 1;
    margin-bottom: 1.2rem;
}

section.double-area img:hover {
    opacity: 0.95;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
}

section .main-area-btn {
    border: 1px solid rgb(92, 92, 92);
    padding: 0.45rem 1.4rem;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 1.15px;
}

section .main-area-btn:hover {
    background: #FF6C6C;
    color: #fff;
    font-size: 13px;
    border: 1px solid #FF6C6C;
}


/* Horizontal Area */

section.horizontal-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
}

section.horizontal-area .horizontal-box {
    position: relative;
    display: flex;
    width: 100%;
    height: 80%;
    background: #ebf1f3;
    border-top: 1px solid #cde2f3;
    border-bottom: 1px solid #cde2f3;
}

section.horizontal-area .horizontal-box .left-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.horizontal-area .horizontal-box .right-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.horizontal-area .horizontal-box .horizontal-area-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 5rem;
}


section.horizontal-area .horizontal-box .horizontal-area-content p {
    padding: 1.8rem 0;
    letter-spacing: 1.5px;
    line-height: 22px;
    font-size: 13px;
}

section.horizontal-area .horizontal-box .horizontal-area-content span {
    font-size: 19px;
    font-weight: 800;
}

section.horizontal-area img {
    position: relative;
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 3px;
    opacity: 1;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
}



section.horizontal-area img:hover {
    opacity: 0.95;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}


/* Product Area */

section.product-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
    background: url(./hande/UCIMG-1372-1.jpg) fixed;
    background-size: cover;
    background-position: center;
}


/* Contact Area */

section.contact-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
    background: url(./hande/small-kitchen-1572367025.png) fixed;
    background-size: cover;
    background-position: center;
}


/* footer */

footer {
    background: #007ba0;
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 70%;
}

footer .row-top {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0 1rem 0;
}

footer .row-top .left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

footer .row-top .left-col h5 {
    padding-bottom: 1.7rem;
    font-size: 15px;
}

footer .row-top .left-col .contact-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
}

footer .row-top .left-col .contact-icons li i {
    font-size: 18px;
    transition: 0.3s ease;
}

footer .row-top .left-col .contact-icons li i:hover {
    transform: scale(1.5);
    color: #42eaf5;
}

footer .row-top .center-col {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    border-left: #42eaf5 1px solid;
    border-right: #42eaf5 1px solid;
}

footer .row-top .center-col h5{
    color: #ffffff;
}

footer .row-top .center-col img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 1rem;
}

footer .row-top .right-col {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
}

footer .row-top .right-col .main-menu li {
    margin-bottom: 0.75rem;
    text-align: center;
    opacity: 0.75;
    font-size: 13px;
   
}
footer .row-top .right-col .main-menu li a {
    
    color: #ffffff;
}

footer .row-top .right-col .main-menu li:hover {
    color: #42eaf5;
    opacity: 1;
}

footer .row-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

footer .row-bottom p {
    color: #ffffff;
}

/* Search Area */

section.search-area {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
    margin: 3rem 0;
}

section.search-area .col-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 5%;
	 	
}

section.search-area .col-center {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	 
}

section.search-area .col-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 5%;
}

section.search-area img.first-img {
    width: 75%;
    object-fit: cover;
    opacity: .75;
}

section.search-area img.second-img {
    width: 75%;
    object-fit: cover;
    opacity: .75;
}

section.search-area h1 {
    font-size: 29px;
    font-weight: 600;
    color: #333;
    opacity: .9;
    margin-bottom: 1.3rem;
}

section.search-area .search-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}

section.search-area .search-box .row-top {
    display: flex;
    justify-content: center;
    width: 100%;
}

section.search-area .search-box .row-top i {
    display: flex;
    align-items: center;
}

section.search-area .search-box i {
    font-size: 19px;
    margin-left: 15px;
    opacity: 0.65;
}

section.search-area input {
    width: 100%;
    padding: 12px;
    border: 1px solid #bcbebe;
    font-size: 18px;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

section.search-area input:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}

section.search-area .search-box .row-bottom {
    display: flex;
    flex-wrap: wrap;
}

section.search-area .search-buttons {
    margin: 1.5rem 1rem 1.5rem 0.6rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

section.search-area .search-buttons .main-area-btn {
    padding: 0.2rem 0.4rem;
    background: #4ca6da;
    color: #fff;
    border: none;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 11.5px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    transition: 0.4s ease;
}

section.search-area .search-buttons .main-area-btn:hover {
    background: rgb(255, 136, 136);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

section.search-area .search-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.search-area .search-results .horizontal-chart-parent {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: flex-start;
    justify-content: start;
}

section.search-area .search-results .horizontal-card {
    display: flex;
    width: 100%;
    height: 4.5rem;
    border: 1px solid rgb(189, 187, 187);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    background: #fff;
}

section.search-area .search-results .horizontal-card:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    background-color: #eff6fa;
}

section.search-area .search-results .horizontal-card .horizontal-card-content {
    text-align: center;
    display: flex;
    align-items: center;
}

section.search-area .search-results .horizontal-card .horizontal-card-content h1 {
    padding: 0.5rem 1rem;
    font-size: 13.5px;
    font-weight: 600;
    opacity: 0.75;
    border-right: rgb(163, 163, 163) 0.75px solid;
    margin-bottom: 0;
}

section.search-area .search-results .horizontal-card .horizontal-card-content p {
    letter-spacing: 1.0px;
    opacity: 0.9;
    font-size: 11px;
    padding: 0.5rem 1rem;
}

section.tarif-area .search-results .horizontal-chart-parent .more-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-right: 0.8rem;
    margin-top: 1.25rem;
}

section.search-area .search-results .horizontal-chart-parent .more-btn a {
    border: 1px solid rgb(167, 164, 164);
    padding: 0.35rem 1.35rem;
    border-radius: 5px;
    font-size: 13px;
    letter-spacing: 1.15px;
    transition: 0.2s ease;
    background: #fff;
}

section.search-area .search-results .horizontal-chart-parent .more-btn a:hover {
    background: #333;
    color: #fff;
}


/* Tarif Area */

section.tarif-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
   /*  height: 100vh; */
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
}
section.tarif-area .contact-form .text-input {
    display: none;
}

section.tarif-area .tarif-box-top {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    background: #ebf1f3;
}

section.tarif-area .tarif-box-top .left-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3rem;
    padding-left: 1.3rem;
}

section.tarif-area .tarif-box-top .right-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3rem;
}
section.tarif-area .tarif-box-top .right-box .horizontal-area-content img {
    width: 10rem;
}
section.tarif-area .tarif-box-top .right-box .horizontal-area-content .contact-form {
    margin-top: 0px;
}

section.tarif-area .tarif-box-top .horizontal-area-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 5.5rem;
}

section.tarif-area .tarif-box-top .horizontal-area-content p {
    padding: 0.9rem 0;
    letter-spacing: 1.5px;
    line-height: 22px;
    font-size: 13px;
}

section.tarif-area .tarif-box-top .horizontal-area-content h1 {
    font-size: 25px;
    font-weight: 500;
    padding-bottom: 1.25rem;
}

section.tarif-area img {
    position: relative;
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 3px;
    opacity: 1;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
}

section.tarif-area img:hover {
    opacity: 0.95;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

section.tarif-area .row-bottom {
    display: flex;
    flex-wrap: wrap;
}

section.tarif-area .search-buttons {
    margin: 1.2rem 0rem 0rem 0rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

section.tarif-area .search-buttons .main-area-btn {
    padding: 0.2rem 0.5rem;
    background: #4ca6da;
    color: #fff;
    border: none;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 11px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    transition: 0.4s ease;
}

section.tarif-area .search-buttons .main-area-btn:hover {
    background: #42eaf5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

section.tarif-area .tarif-box-center {
    display: flex;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

section.tarif-area .tarif-box-center .left-box {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

section.tarif-area .tarif-box-center .right-box {
    flex: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.tarif-area .tarif-box-center .right-box .tarif-area-content {
    width: 75%;
    padding-left: 5rem;
    border-left: .5px solid #42eaf5;
    padding-top: 2rem;
}

section.tarif-area .tarif-box-center .right-box .tarif-area-content h1 {
    font-size: 25px;
    font-weight: 500;
    padding-bottom: 1rem;
}

section.tarif-area .tarif-box-center .right-box .tarif-area-content .tarif-tarif {
    line-height: 1.75rem;
    list-style: circle;
   /*  margin-left: 1.5rem; */
    align-items: left;
}

section.tarif-area .tarif-box-center .right-box .tarif-area-content .tarif-tarif p {
    text-align: inherit;
}

section.tarif-area .tarif-box-center .right-box .tarif-area-content .tarif-tarif li {
    padding-bottom: .3rem;
}

section.tarif-area .tarif-box-center .malzeme-list-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 82%;
    background: #ebf1f3;
    border-radius: 3px;
}

section.tarif-area .tarif-box-center .malzeme-list {
    border-radius: 5px;
    width: 65%;
    height: fit-content;
}

section.tarif-area .tarif-box-center .malzeme-list h4 {
    text-align: center;
    font-size: 17px;
    margin-bottom: .75rem;
    color: #333;
}

section.tarif-area .tarif-box-center .malzeme-list li {
    list-style: inside;
    color: #333;
    padding-bottom: .4rem;
}

section.tarif-area .tarif-box-center .malzeme-list span {
    font-weight: 600;
    margin-right: .5rem;
    color: rgb(83, 83, 83);
    text-decoration: underline;
}

section.tarif-video-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

section.tarif-video-area .video-embed {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 4;
}

section.tarif-video-area .video-embed iframe {
    width: 70%;
    height: 70vh;
}

section.tarif-photos {
    width: 100%;
    height: auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.tarif-photos .photos-parent {
    display: flex;
    flex-flow: column;
    align-items: center;
}

section.tarif-photos img {
    position: relative;
    width: 75%;
    /* max-height: 75vh; */
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    opacity: 1;
    margin-bottom: 4rem;
}


/* About */

section.about {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
}

section.about .left-col {
    flex: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 0 0 1rem;
}

section.about .left-col img {
    position: relative;
    width: 95%;
    height: 70vh;
    object-fit: cover;
    border-radius: 1px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19), 0 3px 3px rgba(0, 0, 0, 0.23);
    opacity: 1;
}

section.about .left-col img:hover {
    opacity: .9;
}

section.about .center-col {
    flex: .25;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

section.about .center-col .line {
    background: #42eaf5;
    height: 50%;
    width: 1.5px;
}

section.about .right-col {
    flex: 5;
    padding: 0 3rem;
}

section.about .right-col h1 {
    font-size: 24px;
    font-weight: 500;
}

section.about .right-col h2 {
    font-size: 14px;
    padding-bottom: 1rem;
    font-weight: 500;
}

section.about .right-col p {
    padding: 1.2rem 0rem;
    font-size: 14px;
}
section.about .about-content p {
    text-align: inherit;
}


section.about .right-col .deneyim {
    padding-bottom: 1.2rem;
}

section.about .right-col .deneyim .deneyim-item {
    list-style: inside;
}

section.about .right-col .contact-icons {
    display: flex;
}

section.about .right-col .contact-icons li {
    margin-right: .75rem;
    font-size: 1.2rem;
    transition: 0.2s;
}

section.about .right-col .contact-icons li :hover {
    color: #42eaf5;
}


/* Search Page */

section.search-page {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue';
}

section.search-page .col-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5%;
}

section.search-page .col-center {
    flex: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
    padding: 3rem 0;
    height: auto;
}

section.search-page .col-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 5%;
}

section.search-page img.first-img {
    width: 75%;
    object-fit: cover;
    opacity: .75;
}

section.search-page img.second-img {
    width: 75%;
    object-fit: cover;
    opacity: .75;
}

section.search-page h1 {
    font-size: 29px;
    font-weight: 600;
    color: #333;
    opacity: .9;
    margin-bottom: 1.3rem;
}

section.search-page .search-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}

section.search-page .search-box .row-top {
    display: flex;
    justify-content: center;
    width: 100%;
}
section.search-page .search-box .row-top form {
    display: flex;
    justify-content: center;
    width: 100%;
}
section.search-page .search-box .row-top form button{
    width: auto;
    border: none;
    background: none;
}

section.search-page .search-box .row-top i {
    display: flex;
    align-items: center;
}

section.search-page .search-box i {
    font-size: 19px;
    margin-left: 15px;
    opacity: 0.65;
}

section.search-page input {
    width: 100%;
    padding: 12px;
    border: 1px solid #bcbebe;
    font-size: 18px;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

section.search-page input:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}

section.search-page .search-box .row-bottom {
    display: flex;
    flex-wrap: wrap;
}

section.search-page .search-buttons {
    margin: 1.5rem 1rem 1.5rem 0.6rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

section.search-page .search-buttons .main-area-btn {
    padding: 0.2rem 0.4rem;
    background: #4ca6da;
    color: #fff;
    border: none;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 11.5px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    transition: 0.4s ease;
}

section.search-page .search-buttons .main-area-btn:hover {
    background: rgb(255, 136, 136);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

section.search-page .search-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.search-page .search-results .horizontal-chart-parent {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: flex-start;
    justify-content: start;
}

section.search-page .search-results .horizontal-card {
    display: flex;
    width: 100%;
    height: 4.5rem;
    border: 1px solid rgb(189, 187, 187);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    background: #fff;
}

section.search-page .search-results .horizontal-card:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
    background-color: #eff6fa;
}

section.search-page .search-results .horizontal-card .horizontal-card-content {
    text-align: center;
    display: flex;
    align-items: center;
}

section.search-page .search-results .horizontal-card .horizontal-card-content h1 {
    padding: 0.5rem 1rem;
    font-size: 13.5px;
    font-weight: 600;
    opacity: 0.75;
    border-right: rgb(163, 163, 163) 0.75px solid;
    margin-bottom: 0;
}

section.search-page .search-results .horizontal-card .horizontal-card-content p {
    letter-spacing: 1.0px;
    opacity: 0.9;
    font-size: 11px;
    padding: 0.5rem 1rem;
}

section.search-page .search-results .horizontal-chart-parent .more-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-right: 0.8rem;
    margin-top: 1.25rem;
}

section.search-page .search-results .horizontal-chart-parent .more-btn a {
    border: 1px solid rgb(167, 164, 164);
    padding: 0.35rem 1.35rem;
    border-radius: 5px;
    font-size: 13px;
    letter-spacing: 1.15px;
    transition: 0.2s ease;
    background: #fff;
}

section.search-page .search-results .horizontal-chart-parent .more-btn a:hover {
    background: #333;
    color: #fff;
}

.pagination {

    display: flex;

    padding-left: 0;

    list-style: none;

    border-radius: 0.25rem

}

.page-link {

    position: relative;

    display: block;

    padding: 0.5rem 0.75rem;

    margin-left: -1px;

    line-height: 1.25;

    color: #007ba0;

    background-color: #fff;

    border: 1px solid #dee2e6

}

.page-link:hover {

    z-index: 2;

    color: #42eaf5;

    text-decoration: none;

    background-color: #e9ecef;

    border-color: #dee2e6

}

.page-link:focus {

    z-index: 2;

    outline: 0;

    box-shadow: none

}

.page-link:not(:disabled):not(.disabled) {

    cursor: pointer

}

.page-item:first-child .page-link,

.pagination .page-number:first-child .page-link {

    margin-left: 0;

    border-top-left-radius: 0.25rem;

    border-bottom-left-radius: 0.25rem

}

.page-item:last-child .page-link,

.pagination .page-number:last-child .page-link {

    border-top-right-radius: 0.25rem;

    border-bottom-right-radius: 0.25rem

}

.page-item.active .page-link,

.pagination .active.page-number .page-link {

    z-index: 1;

    color: #fff;

    background-color: #007ba0;

    border-color: #42eaf5

}

.page-item.disabled .page-link,

.pagination .disabled.page-number .page-link {

    color: #6c757d;

    pointer-events: none;

    cursor: auto;

    background-color: #fff;

    border-color: #dee2e6

}

.pagination-lg .page-link {

    padding: 0.75rem 1.5rem;

    font-size: 1.1rem;

    line-height: 1.5

}

.pagination-lg .page-item:first-child .page-link,

.pagination-lg .pagination .page-number:first-child .page-link,

.pagination .pagination-lg .page-number:first-child .page-link {

    border-top-left-radius: 0.3rem;

    border-bottom-left-radius: 0.3rem

}

.pagination-lg .page-item:last-child .page-link,

.pagination-lg .pagination .page-number:last-child .page-link,

.pagination .pagination-lg .page-number:last-child .page-link {

    border-top-right-radius: 0.3rem;

    border-bottom-right-radius: 0.3rem

}

.pagination-sm .page-link {

    padding: 0.25rem 0.5rem;

    font-size: 0.968rem;

    line-height: 1.5

}

.pagination-sm .page-item:first-child .page-link,

.pagination-sm .pagination .page-number:first-child .page-link,

.pagination .pagination-sm .page-number:first-child .page-link {

    border-top-left-radius: 0.2rem;

    border-bottom-left-radius: 0.2rem

}

.pagination-sm .page-item:last-child .page-link,

.pagination-sm .pagination .page-number:last-child .page-link,

.pagination .pagination-sm .page-number:last-child .page-link {

    border-top-right-radius: 0.2rem;

    border-bottom-right-radius: 0.2rem

}

.pagination li a {

    position: relative;

    display: block;

    padding: 0.5rem 0.75rem;

    margin-left: -1px;

    line-height: 1.25;

    color: #42eaf5;

    background-color: #fff;

    border: 1px solid #dee2e6

}

.pagination li a:hover {

    z-index: 2;

    color: #42eaf5;

    text-decoration: none;

    background-color: #e9ecef;

    border-color: #dee2e6

}

.pagination li a:focus {

    z-index: 2;

    outline: 0;

    box-shadow: none

}

.pagination li a:not(:disabled):not(.disabled) {

    cursor: pointer

}

.pagination li:first-child a {

    margin-left: 0;

    border-top-left-radius: 0.25rem;

    border-bottom-left-radius: 0.25rem

}

.pagination li:last-child a {

    border-top-right-radius: 0.25rem;

    border-bottom-right-radius: 0.25rem

}

.pagination li.active a {

    z-index: 1;

    color: #fff;

    background-color: #007ba0;

    border-color: #42eaf5

}

.pagination li.active a:hover {

    color: #fff

}

.pagination li.disabled a {

    color: #6c757d;

    pointer-events: none;

    cursor: auto;

    background-color: #fff;

    border-color: #dee2e6

}

.pagination-rounded li a {

    border-radius: 50px !important;

    margin: 0 0.3rem

}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {

    margin: 2px 0;

    white-space: nowrap;

    justify-content: flex-end

}





.vertical-chart-parent {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    align-items: flex-start;
    height: auto;
}

.vertical-card {
    display: flex;
    flex-flow: column;
    width: 25%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 2rem;
    margin-right: 2rem;
    border: .5px solid rgb(231, 230, 230);
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    background: #fff;
}

.vertical-card img {
    object-fit: cover;
    width: 100%;
    height: 20vh;
}

.vertical-card .vertical-card-content {
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    padding: 1.5rem 1rem;
}

.vertical-card .vertical-card-content h1 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: .75rem;
}

.vertical-card .vertical-card-content a {
    letter-spacing: 1.0px;
    opacity: 0.9;
    font-size: 11px;
}


/* CONTACT FORM */

.contact-form {
    width:90%;
    max-width: 800px;
    margin:50px auto;
    padding:20px;
}

.contact-form h1, p{
    text-align: center;
  }
.contact-form h1{
    font-weight: 500;
    font-size: 20px;
  }

  .contact-form  label{
    display:block;
    margin:1em 0 .2em;
  }
  /* single-line text, checkbox, and button */
  .contact-form input, select, textarea, button{
    display:block;
    width:100%;
    padding:.3em;
    font-size:20px;
    background-color:#fbfbfb;
    border:solid 1px #CCC;
    resize:vertical;
  }
  .contact-form textarea{
    min-height:180px;
  }

  
  .contact-form  button{
    background:#007ba0;
    margin:1em 0 0;
    color:white;
    border:none;
    border-radius:8px;
    transition:all .3s ease-out;
  }
  
 
  
  /* hover and focus states */
  .contact-form button:hover,
  button:focus{
    background: #42eaf5;
    outline:none;
  }

  @media screen and (min-width:600px) {
    /*  make the form 2 columns */
    .contact-form form:after{
      content:'';
      display:block;
      clear:both;
    }
    .contact-form .column{
      width:50%;
      padding:1em;
      float:left;
    }
    .vertical-card .vertical-card-content {
        
        padding: 1rem 0.5rem;
    }
  }

/* CONTACT FORM */

/* MEDIA QUERIES */


@media (min-width: 576px) and (max-width: 991.98px) {
    .menu-btn {
        display: block;
    }

    .mobile-app-menu-btn {

        display: block

    }
    .menu-btn:hover {
        opacity: 0.6;
    }
    .main-nav ul.right-menu {
        margin: auto;
    }
    .main-nav ul.main-menu {
        display: block;
        position: fixed;
        top: 5rem;
        left: 36rem;
        background: #f2f2f2;
        width: 30%;
        height: fit-content;
        border-right: #ccc 1px solid;
        opacity: 0.85;
        padding: 2rem;
        transform: translateX(-35rem);
        transition: transform 0.5s ease-in-out;
        z-index: 999;
    }
    .main-nav ul.main-menu li {
        padding: 0.75rem;
        border-bottom: #ccc 1px solid;
        font-size: 0.9rem;
    }
    .main-nav ul.main-menu li:last-child {
        border: none;
    }
    .main-nav ul.main-menu.show {
        transform: translateX(-1.3rem);
    }
    .banner .content {
        position: absolute;
        right: 35%;
        top: 100px;
        margin: 0;
    }
    .slider-navigation {
        bottom: 15%;
        right: 40%;
    }
    section.search-area .search-results .horizontal-card .horizontal-card-content h1 {
        padding: 0.5rem 1rem;
        font-size: 10.5px;
        font-weight: 600;
    }
    section.search-area .search-results .horizontal-card .horizontal-card-content p {
        letter-spacing: 1.0px;
        opacity: 0.9;
        font-size: 9.5px;
        padding: 0.5rem 1rem;
    }
    section .double-card {
        width: 90%;
    }
    section .double-card .double-card-content h1 {
        font-size: 14;
        font-weight: 700;
    }
    section .double-card .double-card-content p {
        font-size: 12px;
    }
    section .main-area-btn {
        font-size: 11px;
    }
    section.horizontal-area .horizontal-box .horizontal-area-content {
        padding: 1.5rem 2rem;
    }
    section.horizontal-area .horizontal-box .horizontal-area-content p {
        font-size: 11px;
        padding: .5rem 0;
    }
    section.horizontal-area .horizontal-box .horizontal-area-content span {
        font-size: 18px;
    }
    section.general-search {
        height: auto;
    }
    section.general-search .box-container .general-box {
        width: 45%;
    }
    section.about .right-col {
        padding: 0 1.2rem;
    }
    section.about .right-col h1 {
        font-size: 19px;
    }
    section.about .right-col h2 {
        font-size: 13px;
    }
    section.about .right-col p {
        font-size: 12px;
    }
    section.about .right-col .deneyim .deneyim-item {
        font-size: 12px;
    }
    section.about .right-col .contact-icons {
        font-size: 10px;
    }
    section.tarif-area {
        height: auto;
        z-index: -10;
    }
    section.tarif-area h2 {
        font-size: 18px;
        right: -60px;
    }
    section.tarif-area .tarif-box-top .horizontal-area-content {
        padding: 1.4rem;
    }
    section.tarif-area .tarif-box-top .horizontal-area-content h1 {
        font-size: 20.5px;
        padding-bottom: 1rem;
    }
    section.tarif-area .search-buttons {
        margin: 0;
    }
    section.tarif-area .tarif-box-top .horizontal-area-content p {
        font-size: 11px;
        padding: 0.8rem 0;
    }
    section.tarif-area .search-buttons .main-area-btn {
        font-size: 9.5px;
        margin-right: .5rem;
        padding: .15rem .4rem;
    }
    section.tarif-area .tarif-box-top .right-box,
    section.tarif-area .tarif-box-top .left-box {
        padding-bottom: 1.3rem;
    }
    section.tarif-area .tarif-box-center {
        height: auto;
        position: relative;
    }
    section.tarif-area .tarif-box-center .left-box {
        flex: 1;
    }
    section.tarif-area .tarif-box-center .malzeme-list-parent {
        width: 90%;
        padding: 1rem 0;
    }
    section.tarif-area .tarif-box-center .malzeme-list {
        font-size: 11.5px;
    }
    section.tarif-area .tarif-box-center .malzeme-list h4 {
        font-size: 15.5px;
    }
    section.tarif-area .tarif-box-center .right-box {
        flex: 2;
        padding-top: 1.5rem;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content .tarif-tarif {
        line-height: 1.25rem;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content {
        width: 70%;
        padding-left: 3rem;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content h1 {
        font-size: 20px;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content .tarif-tarif li {
        padding-bottom: .15rem;
        font-size: 11px;
    }
    section.tarif-video-area {
        padding: 4rem 0;
        height: auto;
    }
    section.tarif-video-area .video-embed iframe {
        width: 80%;
        height: 50vh;
    }
    section.tarif-video-area h1 {
        padding-left: 2rem;
        font-size: 19px;
    }
    section.tarif-photos {
        height: auto;
    }
    section.tarif-photos section.tarif-photos .photos-parent img {
        width: 85%;
        max-height: 45vh;
        margin-bottom: 1.2rem;
    }
    section.search-page .search-results .horizontal-card .horizontal-card-content h1 {
        padding: 0.5rem 1rem;
        font-size: 10.5px;
        font-weight: 600;
    }
    section.search-page .search-results .horizontal-card .horizontal-card-content p {
        letter-spacing: 1.0px;
        opacity: 0.9;
        font-size: 9.5px;
        padding: 0.5rem 1rem;
    }
}

.mobile-app-menu-btn {

    display: none;

    margin: 3px 1.5rem 0 0

}

@media (max-width: 575.98px) {
    .menu-btn {
        display: block;
        font-size: 12px;
    }
    .menu-btn:hover {
        opacity: 0.6;
    }
    .main-nav ul.right-menu {
        margin: auto;
        display: none;
    }
    .main-nav h2 {
        font-weight: 600;
        font-size: 16.5px;
    }
    .main-nav ul.main-menu {
        display: block;
        position: fixed;
        top: 5rem;
        left: 36rem;
        background: #f2f2f2;
        width: 50%;
        height: fit-content;
        border-right: #ccc 1px solid;
        opacity: 0.85;
        padding: 2rem;
        transform: translateX(-35rem);
        transition: transform 0.5s ease-in-out;
        z-index: 999;
    }
    .main-nav ul.main-menu li {
        padding: 0.75rem;
        border-bottom: #ccc 1px solid;
        font-size: 0.9rem;
    }
    .main-nav ul.main-menu li a {
        font-size: 12px;
    }
    .main-nav ul.main-menu li:last-child {
        border: none;
    }
    .main-nav ul.main-menu.show {
        transform: translateX(-1.3rem);
    }
    footer .row-top .left-col {
        display: none;
    }
    footer .row-top .center-col {
        border-left: none;
    }
    section.banner {
        height: 100vh;
        position: relative;
    }
    section.banner .img-slide {
        position: absolute;
        height: 100%;
    }
    .banner .content {
        display: none;
    }
    .banner .content p {
        font-size: 1rem;
        padding: 0.5rem;
    }
    .banner .content h1 {
        font-size: 0.75rem;
    }
    .slider-navigation {
        bottom: 20%;
        right: 30%;
        height: 2rem;
    }
    .slider-navigation .nav-btn {
        width: 0.75rem;
        height: 0.75rem;
    }
    .slider-navigation .nav-btn:not(:last-child) {
        margin-right: 1rem;
    }
    /* search area */
    section.search-area {
        position: relative;
        height: auto;
    }
    section.search-area .colcol-left {
        flex: 0;
    }
    section.search-area .col-right {
        flex: 0;
    }
    section.search-area .search-results .horizontal-chart-parent {
        width: 80%;
    }
    section.search-area .search-box {
        width: 80%;
    }
    section.search-area .search-results .horizontal-card .horizontal-card-content h1 {
        padding: 0.5rem 1rem;
        font-size: 8.5px;
        font-weight: 700;
    }
    section.search-area .search-results .horizontal-card .horizontal-card-content p {
        letter-spacing: 1.0px;
        opacity: 0.9;
        font-size: 8.5px;
        padding: 0.5rem 1rem;
    }
    section.search-area .search-buttons .main-area-btn {
        font-size: 9.5px;
    }
    section.search-area .search-results .horizontal-chart-parent .more-btn a {
        font-size: 10.5px;
    }
    section.search-area input {
        font-size: 14px;
    }
    section.search-area h1 {
        font-size: 22.5px;
    }
    section.main-area .left-col {
        padding: 5% 0;
    }
    section.main-area .p-header {
        font-size: 12px;
    }
    section.main-area h1 {
        font-size: 22px;
    }
    section.main-area p {
        font-size: 12px;
    }
    section.main-area .main-area-btn {
        font-size: 12px;
    }
    section.double-area {
        position: relative;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        height: auto;
    }
    section .double-card {
        width: 90%;
        padding: 4rem 3% 0 3%;
    }
    section .double-card .double-card-content h1 {
        font-size: 13;
        font-weight: 700;
    }
    section .double-card .double-card-content p {
        font-size: 11px;
    }
    section .main-area-btn {
        font-size: 10px;
    }
    section.horizontal-area {
        height: auto;
        padding: 2.5rem 0;
    }
    section.horizontal-area .left-box {
        padding: 2rem 0 1rem 0;
    }
    section.horizontal-area .horizontal-box {
        position: relative;
        flex-direction: column;
    }
    section.horizontal-area .horizontal-box .horizontal-area-content {
        padding: 0 1rem 2rem 1rem;
    }
    section.horizontal-area .horizontal-box .horizontal-area-content p {
        font-size: 11px;
        padding: 1rem 0;
    }
    section.general-search {
        height: auto;
    }
    section.general-search .box-container {
        padding: 3rem 2rem;
    }
    section.general-search .box-container .general-box {
        width: 100%;
    }
    section.about {
        height: auto;
        flex-direction: column;
    }
    section.about .left-col {
        padding: 1rem 2rem;
        z-index: -5;
    }
    section.about .right-col {
        padding: 1rem 3rem;
    }
    section.about .right-col h1 {
        font-size: 18px;
    }
    section.about .right-col h2 {
        font-size: 12.5px;
    }
    section.about .right-col p {
        font-size: 11.5px;
    }
    section.about .right-col .deneyim .deneyim-item {
        font-size: 11.5px;
    }
    section.about .right-col .contact-icons {
        font-size: 9.5px;
    }
    /* tarif area */
    section.tarif-area {
        height: auto;
        z-index: -10;
    }
    section.tarif-area .tarif-box-top {
        display: inline-block;
    }
    section.tarif-area .tarif-box-top .left-box {
        padding: 0;
    }
    section.tarif-area .tarif-box-top .right-box {
        padding-bottom: 0;
    }
    section.tarif-area img {
        width: 80%;
        height: 30%;
        margin-bottom: 0;
    }
    section.tarif-area h2 {
        font-size: 16px;
        right: -60px;
    }
    section.tarif-area .tarif-box-top .horizontal-area-content {
        padding: 1.6rem;
    }
    section.tarif-area .tarif-box-top .horizontal-area-content h1 {
        font-size: 19px;
        padding-bottom: 1rem;
    }
    section.tarif-area .search-buttons {
        margin: 0;
    }
    section.tarif-area .tarif-box-top .horizontal-area-content p {
        font-size: 8.5px;
        padding: 0.8rem 1.5rem;
    }
    section.tarif-area .search-buttons .main-area-btn {
        font-size: 8px;
        margin-right: .5rem;
    }
    section.tarif-area .tarif-box-center {
        position: relative;
        display: inline-block;
        padding: 1rem;
    }
    section.tarif-area .tarif-box-center .left-box {
        flex: 0;
        padding: 0;
        justify-content: center;
    }
    section.tarif-area .tarif-box-center .malzeme-list-parent {
        width: 90%;
        padding: 1rem 0;
        height: fit-content;
        border-radius: 4px;
    }
    section.tarif-area .tarif-box-center .malzeme-list {
        font-size: 10.5px;
    }
    section.tarif-area .tarif-box-center .malzeme-list h4 {
        font-size: 13.5px;
    }
    section.tarif-area .tarif-box-center .right-box {
        flex: 0;
        padding-top: 1.5rem;
        padding-left: 2rem;
        justify-content: flex-start;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content .tarif-tarif {
        line-height: 1.25rem;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content {
        width: 80%;
        padding-left: .5rem;
        border-left: none;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content h1 {
        font-size: 16px;
    }
    section.tarif-area .tarif-box-center .right-box .tarif-area-content .tarif-tarif li {
        padding-bottom: .1rem;
        font-size: 9.5px;
    }
    section.tarif-video-area {
        padding: 2rem 0;
        height: auto;
    }
    section.tarif-video-area .video-embed iframe {
        width: 80%;
        height: 35vh;
    }
    section.tarif-video-area h1 {
        padding-left: 1rem;
        font-size: 14px;
    }
    section.tarif-photos ::before {
        content: "Fotograflar";
        top: 10px;
        left: 50%;
        font-size: 13.5px;
    }
    section.tarif-photos {
        padding: 0 0 2rem 0;
    }
    section.tarif-photos img {
        margin-bottom: 1rem;
        height: 30vh;
    }
    section.tarif-photos img:first-child {
        padding-top: .75rem;
    }
    /* search page */
    section.search-page {
        position: relative;
        height: auto;
    }
    section.search-page .col-left {
        flex: 0;
    }
    section.search-page .col-right {
        flex: 0;
    }
    section.search-page .search-results .horizontal-chart-parent {
        width: 80%;
    }
    section.search-page .search-box {
        width: 80%;
    }
    section.search-page .search-results .horizontal-card .horizontal-card-content h1 {
        padding: 0.5rem 1rem;
        font-size: 8.5px;
        font-weight: 700;
    }
    section.search-page .search-results .horizontal-card .horizontal-card-content p {
        letter-spacing: 1.0px;
        opacity: 0.9;
        font-size: 8.5px;
        padding: 0.5rem 1rem;
    }
    section.search-page .search-buttons .main-area-btn {
        font-size: 9.5px;
    }
    section.search-page .search-results .horizontal-chart-parent .more-btn a {
        font-size: 10.5px;
    }
    section.search-page input {
        font-size: 14px;
    }
    section.search-page h1 {
        font-size: 22.5px;
    }

    .vertical-card {
        
        width: 100%;
    }
	
	
	  
	
}


section.main-block  {
            position: relative;
        height: auto;
 
	 
}

	
section.main-block .kolon {
  float: left;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

section.main-block   .sol {
  width: 20%;
  min-width: 160px;
  height: auto;
}

section.main-block   .sag {
  width: 80%;
  height: auto;
}

/* Clear floats after the columns */
section.main-block .satir:after {
  content: "";
  display: table;
  clear: both;
   
}	 



 
section.main-block .search_block {
	 display: block;
	
	
}


section.main-block .search_block input {
    min-width: 130px;
    padding: 6px;
    border: 1px solid #bcbebe;
    font-size: 18px;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
	display: inline;
}

section.main-block .search_block input:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .2);
}
 


section.main-block .search_block  form button{
     width: 22px;
	 display: inline-flex;
    border: none;
    background: none;
	
    margin: 0 1.5rem 0 0 ;
   	
}

section.main-block .search_block  form button:hover{
	 
 box-shadow: 0 3px 5px 5px rgba(1, 1, 1, .3);
}	
	
	
 


.tag_container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.tag_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.tag_container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.tag_container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.tag_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.tag_container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tag_container h6{
	 color : #FF8000;
	 
}

.result h2{
	 color : #FF8000;
	 font-size: 16px;
} 
 
 
 
 .result  a {
     
    padding: 0.35rem 1.35rem; 
    font-size: 13px;
    letter-spacing: 1.15px;
    transition: 0.2s ease;
    background: #FFF;
	 color : #FF8000; 
	 font-size: 16px;
}

.result a:hover {
    background: #007ba0;
    color: #FFF;
}
.main-block .result .pages {
 width: 100%;	
 height: 30px;	
 clear:both;
 display:inline;
 background-color: #ff;
} 


.main-block .result .records {
 width: 100%;	 
 display:inline;
  
 padding: 0.35rem 1.35rem;
 margin: 1rem 1rem
} 


.main-block .result .records p {
	padding: 0.35rem 1.35rem; 
	text-align: left; 
	
}







.detail_content {
    width:90%;
    max-width: 800px;
    margin:50px auto;
    padding:20px;
	background: #ebf1f3;
	
}

.detail_content h1{
    font-weight: 500;
    font-size: 20px;
	text-align: left;
	color : #FF8000; 
  }
.detail_content   p{
    text-align: left; 
  }

.detail_content   p.detail{
    text-align: left; 
	background: #C1E6F2;
  }  
  


  .detail_content  label{
    display:block;
    margin:1em 0 .2em;
  }
