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

/* main styling */
html, body {
    font-family: sans-serif;
}

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

h1, h2, h3 {
    padding-bottom: 20px;
}

p {
    margin: 10px, 0;
}

#headbar {
    background-color: #333;
    color: #fff;
    overflow: auto;
}

#headbar a {
    color: #fff;
}

#headbar h1 {
    float: left;
    padding-top: 20px;
}

#headbar ul {
    float: right;
    list-style: none;
}

#headbar ul li {
    float: left;

}

#headbar ul li a {
    display: inline-block;
    padding: 25px;
}

#headbar ul li a:hover,
#headbar ul li a.current {
    background-color: #444;
    color: #f39340;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.text-start {
color: #f39340;
}

.post {
    font-size: 20px;
}

.btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background-color: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    border-radius: 26px;
}

.btn:hover {
background-color: #f39340;
color: #333;
}

.btn-light {
    background-color: #f4f4f4;
    color: #333;
}

.btn-dark {
    background-color: #333;
    color: #fff;
}

.bg-dark {
    background-color: #333;
    color: #fff;
}

.bg-light {
    background-color: #f4f4f4;
    color: #333;
}

.bg-primary {
    background-color: #f39340;
    color: #333;
}

.clr {
    clear: both;
}
 
/* Showlist section */
#showlist {
    background-image: url('../images/pexels-digitalbuggu-172872.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 600px;
}

#showlist .showlist-content {
    text-align: center;
    color: #fff;
    padding-top: 170px;
}

#showlist h1 {
    font-size: 60px;
}

#showlist p {
    padding-bottom: 20px;
    font-size: 20px;
    font-size: 20px;
    color: #f39340;
}

#home-info {
    height: 400px;
}

#home-info .info-img {
    float: left;
    width: 50%;
    height: 100%;
    background-image: url('../images/pexels-jodaarba-2204880.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 25% 25%;
}

#home-info .info-content {
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 50px 30px;
}

#home-info .info-content p {
    padding-bottom: 20px;
    font-size: 18px;
}

/* Features section */
.box {
    width: 33.3%;
    float: left;
    padding: 50px;
    text-align: center;
}

.box i {
    margin-bottom: 20px;
}

#main-footer {
    text-align: center;
    background-color: #444;
    color: #fff;
    padding: 20px;
}

/* About us page */

#about-info {
    padding: 20px 0;
    display: inline-block;
    width: 100%;
}

#about-info .info-right {
    float: right;
    width: 50%;
    min-height: 100%;
}

#about-info .info-right img {
display: block;
margin: auto;
width: 70%;
border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

#about-info .info-left {
    float: left;
    width: 50%;
    min-height: 100%;
}

/* testimonial section */

#testimonials  {

    height: 600px;
    padding-top: 100px;
    background-image: url("../images/pexels-enginakyurt-2677398.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#testimonials h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 40px;
    font-size: 33px;
}

#testimonials .testimonial {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 0.9;
}

#testimonials .testimonial img {
    width: 100px;
    float: left;
    margin-right: 20px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* contact page */

#contact-form {
    padding: 20px 0;
}

#contact-form h1 {
    font-size: 32px;
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;

}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}

#contact-info {
    display: inline-block;
    width: 100%;
}

button {
    margin-top: 20px;
    border-radius: 26px;
}
    
    