/********* Information
1) General
2) Header
3) Content - Home
4) Footer
5) Countries
6) Country
7) Page
8) Contact
9) Appointment
10) Blog

Colors:

#700000
#B25C00
#DC770A
#F59934
#FFF
**********/

/***** 1) General *****/
body, h1, h2, h3, h4, h5, h6, p, span, a, li, div {
    font-family: 'Poppins', sans-serif;
}

a {
    color: #DC770A;
    text-decoration: none;
}

a:hover, a:focus {
    color: #DC770A;
}

/*form styles*/
#stepper-form {
    width: 100%;
    margin: 50px auto;
    text-align: center;
    position: relative;
}

#stepper-form > fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;

    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#stepper-form > fieldset:not(:first-of-type) {
    display: none;
}

/*progressbar*/
#stepper-form > #progressbar {
    margin-left: 35px;
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#stepper-form > #progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 10%;
    float: left;
    position: relative;
}

#stepper-form > #progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: silver;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#stepper-form > #progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: silver;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#stepper-form > #progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#stepper-form > #progressbar li.active:before, #progressbar li.active:after {
    background: #27AE60 !important;
    color: white;
}

.picker--opened .picker__holder {
    height: 400px;
    width: 300px;
}

.picker--opened .picker__frame {
    width: 100%;
    top: 0 !important;
    bottom: auto !important;
}

.picker__wrap {
    width: 100%;
    height: 100%;
}

.picker__box {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    #stepper-form > #progressbar,
    #stepper-form > fieldset {
        width: 100%;
        margin-left: 0;
    }
}

/***** 2) Header *****/
#header {
    background-color: #FFF;
}

#header > .navbar {
    border-radius: 0;
    background-color: #FFF;
    border: none;
    border-bottom: 3px solid #fff;
    margin-bottom: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

#header > .navbar > .container-fluid > .container > .navbar-header > .navbar-toggle.collapsed {
    top: 55px;
    right: 0;
    position: absolute;
}

#header > .navbar > .container-fluid > .container > .navbar-header > .navbar-brand {
    margin-top: 0;
    height: auto;
    padding: 0 15px!important;
}

#header > .navbar > .container-fluid > .container > .navbar-header > .navbar-brand > img {
    /* height: 74px; */
    transition: all .5s ease;
    /* margin-top: 4px; */
}

#header > .navbar > .container-fluid > .container > .navbar-header > .navbar-brand > h3 {
    margin: 0;
    border-top: 1px solid #FF7B00;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse {
    padding: 5px 0 0 0;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav {
    margin: 7.5px 0;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav li > a {
    background: #d50000;
    border: none;
    color: #FFF;
    font-weight: 300;
    margin-right: 10px;
    padding: 10px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav li > a:hover {
    background: #FFF;
    color: #d50000;
    font-weight: normal;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav li > a.phone {
    /* width: 175px; */
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav li > a.phone > .fa {
    margin-top: 5px;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav li > a.phone > .phone {
    font-size: 1.25em;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav li.dropdown.open > a {
    background-color: #FFF;
    color: #605F5F;
}

#header > .navbar > .container-fluid > .container > .navbar-collapse > .navbar-nav li.dropdown.open > ul.dropdown-menu > li > a:hover {
    background-color: #d50000;
    color: #FFF;
}

#header > .navbar > .container-fluid.main-menu {
    background: #d50000;
}

#header > .navbar > .container-fluid.main-menu > .container > .navbar-collapse > .navbar-nav li > a {
    color: #FFF;
    padding: 10px;
    margin-right: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

#header > .navbar > .container-fluid.main-menu > .container > .navbar-collapse > .navbar-nav li > a:hover {
    color: #d50000;
    background-color: #FFF;
}

#header > .navbar > .container-fluid.main-menu > .container > .navbar-collapse > .navbar-nav li > a.btn {
    border: none;
    background: #FFF;
    color: #D50000;
}

#header > .navbar > .container-fluid.main-menu > .container > .navbar-collapse > .navbar-nav li > a.btn:hover {
    background: #D50000;
    color: #FFF;
}

#header > .navbar > .container-fluid.main-menu > .container > .navbar-collapse > .navbar-nav {
    margin: 0;
}

@media (max-width: 768px) {
    #header > .navbar > .container-fluid > .container > .navbar-header > .navbar-brand {
        margin-top: 0;
        height: auto;
    }

    #header > .navbar > .container-fluid > .container > .navbar-header > .mobile-phone {
        position: relative;
        float: right;
        padding: 10px;
        top: 5px;
        border: 1px solid #DC770A;
        border-radius: 5px;
    }
}

/***** 3) Content-Home *****/

#content > .home > .slider {
    margin-bottom: 0;
}

#content > .home > .slider .slide {
    position: relative;
}

#content > .home > .slider .slide > img {
    width: 100%;
}

#content > .home > .slider .slide > p.text {
    font-size: 3em;
    font-weight: 500;
    color: #FFF;
    position: absolute;
    bottom: 25%;
    left: 10%;
}

#content > .home .slick-arrow {
    z-index: 999;
}

#content > .home .slick-prev {
    left: 25px;
}

#content > .home .slick-next {
    right: 25px;
}

#content > .home > .slider > .slick-dots {
    bottom: 0;
    padding: 5px 0;
}

#content > .home > .slider > .slick-dots li button::before {
    font-size: 24px;
    color: #DC770A;
}

#content > .home .slick-prev:before, .slick-next:before {
    color: #DC770A;
}

#content > .home > .vize {
    background-image: url("/public/assets/img/vize.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#content > .home > .vize > .container {
    padding: 50px 25px;
}

#content > .home > .vize > .container > p {
    color: black;
    line-height: 35px;
    font-size: 1.25em;
    text-align: center;
}

#content > .home > .country-list {
    background-image: url("/public/assets/img/map.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#content > .home > .country-list > .container > #country-list {
    padding: 25px;
}

#content > .home > .country-list > .container > #country-list > .slick-arrow {
    z-index: 999;
}

#content > .home > .country-list > .container > #country-list > .slick-prev {
    left: 0;
}

#content > .home > .country-list > .container > #country-list > .slick-next {
    right: 0;
}

#content > .home > .country-list > .container > #country-list .country a {
    display: block;
    padding: 30px 30px 20px 30px;
    transition: all 1.5s ease;
    max-width: 100%;
    text-align: center;
    color: #FF7B00;
    text-decoration: none;
    background: #fff;
    margin-right: 12px;
}

#content > .home > .country-list > .container > #country-list .country a > img {
    max-width: 100%;
}

#content > .home > .country-list > .container > #country-list .country a > p {
    font-size: 1.25em;
    color: #d50000;
    width: 100%;
    border-top: 2px solid #d3d3d3;
    margin-top: 10px;
    padding: 10px 0;
}

#content > .home > .boxes {
    padding: 25px 0;
}

#content > .home > .boxes .box {
    padding: 15px;
    background: #EBEBEB;
    height: 325px;
    border: 1px solid #c5dde8;
    border-radius: 25px;
    margin-bottom: 10px;
}

#content > .home > .boxes .box h3 {
    color: #1C496B;
    font-weight: 500;
}

#content > .home > .boxes .box.general > ul,
#content > .home > .boxes .box.news > ul {
    height: 225px;
    overflow-y: auto;
}

#content > .home > .boxes .box.general > ul > li > a,
#content > .home > .boxes .box.news > ul > li > a {
    color: #003259;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

#content > .home > .boxes .box.general > ul > li > a {
    line-height: 25px;
}

#content > .home > .boxes .box.general > ul > li > a > .fa {
    margin-left: 15px;
}

#content > .home > .boxes .box.news > ul > li > a > p {
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#content > .home > .boxes .box.news > ul > li > a > span {
    color: #666;
    font-size: .85em;
    font-style: italic;
}

#content > .home > .boxes .box .widget a.btn {
    border: none;
    background: #D50000;
    color: #FFF;
}

#content > .home > .help-desk {
    padding: 30px 20px;
    background: #D50000;
    color: #FFF;
}

#content > .home > .help-desk > .container > ul > li > a {
    color: #FFF;
    background: #333333;
    transition: all .5s ease;
    border: none;
    margin-bottom: 10px;
}

#content > .home > .help-desk > .container > ul > li > a:hover {
    background: #D50000;
    color: #FFF;
}

#content > .home > .help-desk > .container > h3 {
    /* font-size: 3em; */
    font-weight: 500;
    margin-bottom: 25px;
    border-bottom: 1px dashed #FFF;
}

#content > .home > .help-desk > .container p {
    /* font-size: 2em; */
}

#content > .home > .help-desk > .container p > a {
    color: #FFF;
    text-decoration: none;
}

@media (max-width: 768px) {
    #content > .home > .slider .slide > p.text,
    #content > .home > .slider > .slick-dots,
    #content > .home .slick-arrow {
        display: none !important;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border: none;
    }
}

/***** 4) Footer *****/
#footer {
    padding-top: 10px;
    border-top: 3px solid #700000;
    background: #9f9f9f;
}

#footer > .container > .logo {
    width: 100%;
}

#footer > .container > ul.menu {
    text-align: center;
    padding: 10px 0 0 0;
}

#footer > .container > ul.menu > li > a {
    color: #FFF;
    padding: 10px 5px;
    margin-bottom: 10px;
    display: block;
}

#footer > .container > .logo > img {
    display: block;
    width: 150px;
    margin: 0 auto;
}

#footer > .copyright {
    border-top: 1px dashed #700000;
}

#footer > .copyright a,
#footer > .copyright {
    color: #FFF
}

/***** 5) Countries ******/
#content > .countries > .country-header {
    padding: 10% 0;
    background-image: url('/public/assets/img/countries.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

#content > .countries > .country-header > h1 {
    position: absolute;
    bottom: 25px;
    left: 50px;
    color: #333;
    font-size: 3em;
}

#content > .countries > .country-content > .container > .country-list {
    margin: 25px 0;
}

#content > .countries > .country-content > .container > .country-list .country {
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
}

#content > .countries > .country-content > .container > .country-list .country > a > .caption {
    position: relative;
}

#content > .countries > .country-content > .container > .country-list .country > a > .caption > .country-img {
    max-width: 100%;
    width: 350px;
    height: 200px;
}

#content > .countries > .country-content > .container > .country-list .country > a > .caption > .flag {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
}

#content > .countries > .country-content > .container > .country-list .country > p.desc {
    font-size: 1em;
    margin-bottom: 5px;
}

#content > .countries > .country-content > .container > .country-list .country > p.desc > .fa {
    color: #FF7B00;
}

#content > .countries > .country-content > .container > .country-list .country > h4 {
    font-size: 1.5em;
    font-weight: 500;
    color: #444;
}

#content > .countries > .country-content > .container > .country-list .country > a.btn {
    background: #d50000;
    border: none;
    margin-top: 10px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    #content > .countries > .country-content > .container > .country-list .country > p.desc {
        font-size: .75em;
    }

    #content > .countries > .country-content > .container > .country-list .country > h4 {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    #content > .countries > .country-content > .container > .country-list .country > .caption > .country-img {
        width: 100%;
        height: 300px;
    }
}

/***** 6) Country ******/
#content > .country > .country-header {
    padding: 15% 0 10% 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

#content > .country > .country-header > .details-list {
    position: absolute;
    bottom: -75px;
    width: 100%;
}

#content > .country > .country-header > .details-list > a > img.flag {
    max-width: 100%;
    width: 100px;
}

#content > .country > .country-header > .details-list > h1 {
    color: #FFF;
    padding-left: 5%;
    font-size: 4em;
}

#content > .country > .country-header > .details-list > ul {
    text-align: center;
}

#content > .country > .country-header > .details-list > ul > li > a {
    display: block;
    background: #555;
    border: 10px solid #D50000;
    border-radius: 100%;
    padding: 25px 15px;
    width: 165px;
    height: 165px;
    color: #FFF;
}

#content > .country > .country-content {
    margin-top: 100px;
}

#content > .country > .country-content .tab-content p {
    line-height: 30px;
    font-size: 1.25em;
}

#content > .country > .country-content .tab-content > .content img {
    max-width: 100%;
    padding: 10px;
}

#content > .country > .country-content .tab-content #accordion > .panel {
    margin-bottom: 5px;
    border-color: #DC770A;
}

#content > .country > .country-content .tab-content #accordion > .panel > .panel-heading {
    background: #DC770A;
    border-color: #DC770A;
}

#content > .country > .country-content .tab-content #accordion > .panel > .panel-heading > h4 > a {
    color: #FFF;
    display: block;
    text-decoration: none;
    font-size: 1.5em;
}

#content > .country > .country-content .tab-content #accordion > .panel > .panel-collapse {
    padding: 15px 10px 0 10px;
}

#content > .country > .country-content .sidebar > .widget > h3 {
    color: #d50000;
}

#content > .country > .country-content .sidebar > .widget a.btn {
    border: none;
    background: #D50000;
    color: #FFF;
}

#content > .country > .country-content .sidebar > .widget a.btn:hover {
    background: #700000;
}

@media (min-width: 768px) {
    #content > .country > .country-header > .details-list > a {
        position: absolute;
        padding-left: 5%;
        bottom: 25px;
    }
}

@media (max-width: 830px) {
    #content > .country > .country-header {
        padding-top: 46%;
    }

    #content > .country > .country-header > .details-list {
        bottom: 0;
    }

    #content > .country > .country-header > .details-list > a {
        position: absolute;
        padding-left: 0;
        bottom: 175px;
        right: 0;
    }

    #content > .country > .country-header > .details-list > ul > li > a {
        width: auto;
        height: auto;
        border-radius: 25px;
        border: none;
        padding: 10px 25px;
    }

    #content > .country > .country-header > .details-list > ul > li > a > p {
        margin: 0;
    }

    #content > .country > .country-content {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    #content > .country > .country-content .content img {
        width: 100%;
    }
}

@media (max-width: 500px) {
    #content > .country > .country-header {
        padding-top: 71%;
    }

    #content > .country > .country-header > .details-list > ul > li > a {
        width: auto;
        height: auto;
        border-radius: 25px;
        border: none;
        padding: 10px 15px;
    }
}

/***** 7) Page ******/
#content > .page > .pageheader {
    padding: 10% 0;
    background-image: url('/public/assets/img/kurumsal.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

#content > .page > .page-content > .container > h1 {
    text-align: center;
    color: #700000;
}

#content > .page > .page-content > .container > .content img {
    max-width: 100%;
    padding: 10px;
}

@media (max-width: 768px) {
    #content > .page > .page-content > .container > .content img {
        width: 100%
    }
}

/***** 8) Contact ******/
#content > .contact > .contact-header {
    padding: 10% 0;
    background-image: url('/public/assets/img/iletisim.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

#content > .contact > .contact-content .information h4 {
    color: #FF7B00;
    font-weight: 500;
    font-size: 2em;
    border-bottom: 1px solid #FF7B00;
}

#content > .contact > .contact-content .information p,
#content > .contact > .contact-content .information ul > li {
    line-height: 30px;
    font-size: 1.25em;
}

#content > .contact > .contact-content #gmap {
    height: 400px;
    width: 100%;
}

/***** 9) Appointment ******/
#content > .appointment > .appointment-header {
    padding: 10% 0;
    background-image: url('/public/assets/img/randevu.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
}

/***** 10) Blog ******/
#content > .blog > .blog-content {
    padding-top: 15px;
}

#content > .blog > .blog-content > .container .post {
    margin-bottom: 10px;
}

#content > .blog > .blog-content > .container .post > a {
    text-decoration: none;
    transition: all .5s ease;
    display: block;
    padding: 15px;
    border: 1px solid transparent;
}

#content > .blog > .blog-content > .container .post > a:hover {
    border: 1px solid #555;
}

#content > .blog > .blog-content > .container .post > a > img {
    max-width: 100%;
    width: 350px;
    height: 250px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #content > .blog > .blog-content > .container .post > a > img {
        width: 100%;
        height: auto;
    }
}