input:focus,
input.form-control:focus {

    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    border-left: 5px solid #8DAB3E;
    -webkit-box-shadow: none;
}


textarea:focus,
textarea.form-control:focus {

    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    border-left: 5px solid #8DAB3E;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}


body {
    font-family: 'Lato', sans-serif;
    color: #666666;
    line-height: 250%;
    text-rendering: optimizeLegibility;

}

strong {
    color: #8DAB3E;
}

a {
    color: #666666;
    transition-duration: 0.25s;
}

a:hover {
    color: #8DAB3E;
}


section {
    /* padding:150px 0;  */
    min-height: 100vh;
}

h3 {
    margin: 0;
}

h2 {
    margin: 50px 0 25px 0;
    color: #8DAB3E;
}

h4 {
    margin: 30px 0 10px;
    color: #333333;
}

#price {
    background: url(../img/price.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.chat{
    position: fixed;
    cursor: pointer;
    bottom: 100px;
    right:  24px;
    padding: 8px 12px;
    color:#f1f1f1;
    background-color : #25D366;
 
    border-radius: 150px;
}
.chat:hover{
    color: blanchedalmond;

}

.country {
    padding: 10px 10px;
    display: block;
    border-radius: 10px;
    color: #111111;
    text-align: center;
    text-decoration: none;
}

.bar {
    background: #8DAB3E;
    padding: 30px;
    color: #f6f6f6
}

.country:hover {
    color: #8DAB3E;
    background: #f6f6f6;
    text-decoration: none;

}

.container-fluid {
    padding: 0;
}

.close {
    color: red;
}

.modal-content {
    border-radius: 0;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #8DAB3E;
}



.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #8DAB3E;

}

.navbar-light .navbar-nav .nav-link {
    color: #333333;

}



.form-group input {
    padding: 25px;
    border-radius: 0px;
    /* border-left: 5px solid #8DAB3E; */
}

.form-group textarea {
    border-radius: 0px;
    /* border-left: 5px solid #8DAB3E; */
}

footer {
    border-width: 3px;
    border-style: solid;
    -webkit-border-image: -webkit-gradient(linear, 0 0, 0 100%, from(black), to(rgba(0, 0, 0, 0))) 1 100%;
    -webkit-border-image: -webkit-linear-gradient(black, rgba(0, 0, 0, 0)) 1 100%;
    -moz-border-image: -moz-linear-gradient(black, rgba(0, 0, 0, 0)) 1 100%;
    -o-border-image: -o-linear-gradient(black, rgba(0, 0, 0, 0)) 1 100%;
    border-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0)) 1 100%;
    line-height: 200%;
    padding-top: 3em;
    background: #060606;
    color: #75737f;
}

footer a {
    color: #75737f;
    transition-duration: 0.25s;
}

footer a:hover {
    color: #8DAB3E;
}


footer a:hover {
    text-decoration: none;
    text-shadow: 1px 1px 1px #111111;
}

.mainfooter h4 {
    color: #f6f6f6;
}

.btn {
    background: #060606;
    border: 0px;
    border-radius: 0px;
}

.btn:hover {
    background: #8DAB3E;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.zigzag {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.outer {
    width: 225px;
    height: 225px;
    overflow: hidden;
    margin: 50px 0 0 0;
    border: 3px solid #8DAB3E;

}

.inner {
    display: inline-block;
    position: relative;
    right: -50%;
    cursor: pointer;
}

.img-name {
    background-color: #8DAB3E;
    width: 225px;
    text-align: center;
    color: #f1f1f1;
}


.boxed {
    position: relative;
    vertical-align: middle;
    left: -50%;
}

.hide {
    display: none;
}

.show {
    display: block;
}

@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}


@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}


/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
    background-color: #555;
    color: white;
    /* padding: 16px 20px; */
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
}

/* The popup chat - hidden by default */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    border: 3px solid #f1f1f1;
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

/* Full-width textarea */
.form-container textarea {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
    resize: none;
    min-height: 200px;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
    background-color: #8DAB3E;
    color: white;
    /* padding: 16px 20px; */
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
    background-color: #ab3e3e;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
    opacity: 1;
}