/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    padding-top: 114px;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {padding: 80px 0;}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Ubuntu', sans-serif; color: #222; font-weight: bold;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 24px;}
h4 {font-size: 18px; line-height: 24px;}
h5 {font-size: 18px; line-height: 24px;}
h6 {font-size: 18px; line-height: 24px;}

strong {font-weight: 700;}

a {
    color: #3D563E;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #3D563E;
    outline: 0;
    text-decoration: none;
}

p {
    color: #222;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.heading {
    margin: 0 0 30px 0;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    color: #222;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.sub-heading {
    margin: 0 0 60px 0;
    text-align: center;
}

.form-control {
    background-color: #F0F0F0;
    border-color: transparent;
}

.form-control:focus {
    border-color: #3D563E;
    background-color: #F0F0F0;
    box-shadow: none;
}

.btn-left-icon i {
    margin-right: 5px;
}

.btn-right-icon i {
    margin-left: 5px;
}

.btn {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 0;
    color: #222;
    text-transform: uppercase;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-dark {
    background-color: #222222;
    border: 1px solid #222222;
    color: #fff;
}

.btn-outline-dark:hover,
.btn-dark:hover {
    background-color: #3D563E;
    border: 1px solid #3D563E;
    color: #fff;
}


.btn-light {
    background-color: #fff;
    border: 1px solid #fff;
    color: #3D563E;
}

.btn-light:hover {
    background-color: #3D563E;
    border-color: #3D563E;
    color: #fff;
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #3D563E;
    border-color: #3D563E;
    color: #fff;
}

.list-style-disc {
    
}

.list-style-disc li {
    position: relative;
}

.list-style-disc li:before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #222;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    top: -2px;
}


/*  header  */
header {
    background-color: #303030;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    height: 100%;
    background-color: #222222;
}

header .top {
    background-color: #191919;
    padding: 8px 0;
    position: relative;
    z-index: 5;
}

header .logo {
    display: inline-block;
    background-color: #222222;
    padding: 15px 35px 15px 0;
}

header nav {
    display: inline-block;
}

header .menu {
    font-size: 0;
}

header .menu .menu-item {
    display: inline-block;
    position: relative;
}

header .menu .menu-item .menu-item-link {
    display: block;
    padding: 28px 15px;
    text-transform: uppercase;
    font-size: 14px;
    color: #acacac;
}

header .menu .menu-item .menu-item-link:hover {
    background-color: #363636;
    color: #f0f0f0;
}


header nav .menu > .menu-item:hover > .sub-menu {
    display: block;
}

header nav ul.sub-menu {
    background-color: #363636;
    left: 0;
    right: auto;
    position: absolute;
    top: 100%;
    padding: 8px 0;
    display: block;
    z-index: 10;
    display: none;

    -webkit-box-shadow: 0 20px 50px 10px rgba(0,0,0,.15);
    -moz-box-shadow: 0 20px 50px 10px rgba(0,0,0,.15);
    box-shadow: 0 20px 50px 10px rgba(0,0,0,.15);
}

header nav ul.sub-menu li:hover > ul.sub-menu {
    display: block;
}

header nav ul.sub-menu li > ul.sub-menu:before {
    display: none;
}

header nav ul.sub-menu li > ul.sub-menu {
    top: -8px;
    left: 100%;
    right: auto;
    display: none;
}

header nav .menu .sub-menu .sub-menu-item {
    display: block;
    position: relative;
}

header nav .menu .sub-menu-arrow {
    position: absolute;
    right: 16px;
    top: 13px;
}

header nav .menu .sub-menu .sub-menu-item-link {
    font-size: 14px;
    display: block;
    position: relative;
    text-align: left;
    width: 230px;
    margin: 0;
    padding: 10px 20px;
    color: #acacac;
}

header nav .menu .sub-menu .sub-menu-item-link:hover {
    color: #fff;
    background-color: #3D563E;
}


header .langs {
    float: right;
}

header .langs ul {
    font-size: 0;
}

header .langs ul li {
    display: inline-block;
}

header .langs ul li a {
    padding: 0 5px;
    color: #acacac;
    border-right: 1px solid #acacac;
    font-size: 14px;
}

header .langs ul li:last-of-type a {
    padding-right: 0;
}

header .langs ul li.active a {
    font-weight: bold;
}

header .langs ul li.active a,
header .langs ul li a:hover {
    color: #f0f0f0;
}

header .langs ul li:last-of-type a {
    border: 0;
}

header .phone {
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
}

header .phone img {
    margin-right: 5px;
    height: 17px;
    vertical-align: text-top;
}

header .online-application {
    display: inline-block;
    padding: 10px 12px;
    font-weight: bold;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    float: right;
    margin: 20px 0;
}


/*  slider  */
.slider .carousel-caption {
    padding: 0;
    top: 50%;
    left: 50%;
    right: inherit;
    bottom: inherit;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.slider .carousel-caption h1 {
    font-size: 40px;
    line-height: 46px;
    color: #fff;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.slider .carousel-caption h2 {
    color: #ADAA4F;
    padding: 0 20px 5px 20px;
    margin: 0 auto 15px auto;
    border-bottom: 1px solid #ADAA4F;
    display: table;
    font-weight: bold;
}

.carousel-indicators li {
    height: 6px;
}

.carousel-indicators {
    bottom: 20px;
    z-index: 3;
}


/*  services  */
.services .service {
    padding: 45px 15px;
    box-shadow: 0px 5px 40px rgba(208, 208, 208, 0.7);
    text-align: center;
    margin: 0 0 40px 0;
    position: relative;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.home.services .service a {
    padding: 7px 15px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #3D563E;
    color: #fff;
    text-align: right;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    text-transform: uppercase;
    font-size: 16px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.services .service:hover a {
    visibility: visible;
    opacity: 1;
}

.services .service h3 {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 15px 0 0 0;
    min-height: 44px;
    padding: 0 40px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.home.services .service:hover {
    background-color: #222;
}

.home.services .service .prime-icon {
    display: block;
    margin: 0 auto;
    max-height: 58px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.home.services .service .sec-icon {
    display: none;
    margin: 0 auto;
    max-height: 58px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.home.services .service:hover .prime-icon {
    display: none;
}

.home.services .service:hover .sec-icon {
    display: block;
}

.home.services .service:hover h3 {
    color: #fff;
}

.services.adventage .service h3 {
    margin: 15px 0 5px 0;
    padding: 0 50px;
}

.services.adventage .service p {
    margin: 0;
    padding: 0 25px;
    min-height: 42px;
}


/*  dark section */
.dark-section {
    background: url('../imgs/dark-section.svg') center center no-repeat;
    background-size: cover;
    color: #acacac;
}

.dark-section .list-style-disc li:before {
    background-color: #fff;
}

.dark-section .heading {
    color: #fff;
}

.dark-section .sub-heading {
    color: #acacac;
}

.dark-section p {
    color: #acacac;
}

.dark-section strong {
    color: #fff;
}

.dark-section ul {
    margin: 0 0 20px 0;
}

.dark-section ul:last-child {
    margin: 0 0 0 0;
}


/*  who are we */
.who-are-we .hint {
    text-align: center;
}

.who-are-we .hint p {
    color: #acacac;
    margin: 0 0 40px 0;
}

.stat {
    text-align: center;
    color: #fff;    
    font-weight: bold;
    margin: 0 0 60px 0;
}

.stat .value {
    font-size: 50px;
    line-height: 56px;
    margin: 0 0 5px 0;
}

.stat .label {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}


/*  expert  */
.expert {
    background: url('../imgs/section-4-bg.jpg') center center no-repeat;
    background-size: cover;
}

.expert .heading {
    text-align: left;
}

.expert ul {
    margin: 0 0 20px 0;
}

.expert.home .btn {
    margin-bottom: 50px;
}


/*  partners  */
.partners {
    padding-top: 30px;
}


/*  intro  */
.intro h1 {
    font-size: 40px;
    line-height: 46px;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.intro .heading {
    text-align: left;
    margin: 0 0 20px 0;
}


/*  valuation  */
.prices .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.prices .intro {
    background-image: url('../imgs/prices.jpg');
}


/*  valuation  */
.valuation .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.valuation.real-estates .intro {
    background-image: url('../imgs/real-estates.jpg');
}

.valuation .heading {
    text-align: left;
}

.valuation .criterion h3 {
    font-weight: bold;
    margin: 0 0 20px 0;
}

.deadlines {
    background: url('../imgs/deadline.jpg') center center no-repeat;
    background-size: cover;
}

.deadlines h3 {
    font-weight: bold;
}


.corporate-values {
    background: url('../imgs/corporate-values.jpg') center center no-repeat;
    background-size: cover;
}

.corporate-values .heading {
    text-align: left;
}


.valuation.business .intro {
    background: url('../imgs/business.jpg') center center no-repeat;
    background-size: cover;
}

.valuation.business .intro ul {
    margin: 0 0 20px 0;
}

.valuation.equipment .intro {
    background: url('../imgs/equipment.jpg') center center no-repeat;
    background-size: cover;
}

.valuation.intangible-assets .intro {
    background: url('../imgs/intangible-assets.jpg') center center no-repeat;
    background-size: cover;
}

.valuation.agricultural-land .intro {
    background: url('../imgs/agricultural-land.jpg') center center no-repeat;
    background-size: cover;
}

.valuation.additional-services .intro {
    background: url('../imgs/additional-services.jpg') center center no-repeat;
    background-size: cover;
}


.careers .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;

    background: url('../imgs/careers.jpg') center center no-repeat;
    background-size: cover;
}

.careers .heading {
    text-align: left;
}

.about .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;

    background: url('../imgs/about-us.jpg') center center no-repeat;
    background-size: cover;
}


.team .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;

    background: url('../imgs/team.jpg') top center no-repeat;
    background-size: cover;
}

.team .manager {
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
    background-color: #fff;
    padding: 30px 0 0 0;
}

.team .manager .manager-image img {
    margin: 0 auto;
    display: block;
}

.team .manager .manager-name {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.team .manager .manager-position {
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.team .map-offices {
    position: relative;
}

.team .map-offices .manager-selector {
    width: 300px;
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
    background-color: #fff;
    padding-bottom: 5px;
}

.team .map-offices .manager-selector h5 {
    font-size: 14px;
    line-height: 20px;
    background-color: #3D563E;
    padding: 13px 15px;
    color: #fff;
    text-transform: uppercase;
}

.team .map-offices .managers-results {
    padding: 0 15px 0 0;
    margin: 0 15px;
    overflow-y: scroll;
    max-height: 300px;
}

.team .map-offices .managers-results .manager-row {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.team .map-offices .managers-results .manager-row:last-of-type {
    border: 0;
}

.team .map-offices .managers-results p {
    margin: 0;
}

.team .map-offices .manager-selector-hint {
    padding: 0 15px;
}

.team .map-offices .city-select {
    margin: 30px 0;
    padding: 0 15px;
}

.team .map-offices .city-select .form-control option:first-of-type {
    display: none;
}

.team .managers .manager-front {
    background-color: #fff;
    padding: 20px 15px;
}

.team .managers .manager-back p {
    color: #fff;
    margin: 0;
}

.team .managers .manager-back a {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 0;
    width: 100%;
    color: #fff;
    background-color: #3D563E;
}

.team .managers .manager-back {
    background-color: #363636;
    padding: 20px 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.team .managers .manager-info .manager-shadow:hover .manager-back {
    display: block;
    opacity: 1;
}

.team .managers hr {
    margin: 30px 0;
}

.team .managers h4 {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0 5px 0;
}

.team .managers .manager-info {
    text-align: center;
    padding: 20px;
    display: block;
}

.team .managers .manager-info .manager-shadow {    
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
    position: relative;
}

.team .managers .manager-info .manager-image img {
    border-radius: 100%;
    margin: 0 auto 10px auto;
    display: block;
    width: 100px;
}

.team .managers .manager-info .manager-name {
    font-weight: bold;
    margin: 0 0 5px 0;
}

.online-request .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;

    background: url('../imgs/online-request.jpg') top center no-repeat;
    background-size: cover;
}

.online-request .request-form {
    background-color: #fff;
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
    padding: 30px;
}

.online-request .request-form .heading {
    margin: 0 0 30px 0;
}

.online-request .request-form select option:first-child {
    display: none;
}





.contacts .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;

    background: url('../imgs/map.jpg') top center no-repeat;
    background-size: cover;
}

.contacts .intro h1 {
    margin: 0 0 60px 0;
}

.contacts .contact {
    background-color: #fff;
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
}

.contacts .contact .contact-form {
    padding: 30px 0 30px 30px;
}

.contacts .contact .contact-form form {
    margin: 50px 0 0 0;
}

.contacts .contact-info {
    background-color: #363636;
    height: 100%;
    padding: 30px 35px;
}

.contacts .contact-info .heading {
    color: #fff;
}

.contacts .heading {
    margin: 0 0 30px 0;
}

.contacts .contact-info .info {
    margin: 46px 0 0 0;
}

.contacts .contact-info .info li {
    color: #acacac;
    margin: 40px 0;
}

.contacts .contact-info .info li a {
    color: #fff;
    display: block;
    margin: 10px 0 0 0;
}

.contacts .contact-info .contact-social li {
    display: inline-block;
    margin-right: 15px;
}

.contacts .contact-info .contact-social li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    display: block;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    color: #222;
}

.contacts .contact-info .contact-social li a:hover {
    background-color: #3D563E;
    color: #fff;
}

.contacts .offices .office {
    margin: 0 0 30px 0;
}

.contacts .offices .office .map {
    max-height: 400px;
    overflow: hidden;
}

.contacts .offices .office .office-info {
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
}

.contacts .offices .office .office-info .office-contacts {
    max-height: 353px;
    overflow-y: scroll;
}   

.contacts .offices .office .office-info .office-name {
    background-color: #3D563E;
    padding: 13px 15px;
    color: #fff;
    text-transform: uppercase;
}

.contacts .offices .office .office-info .office-contacts {
    padding: 15px;
}

.contacts .offices .office .office-info .office-contact {
    margin: 0 0 15px 0;
}

.contacts .offices .office .office-info .office-contact h3 {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.contacts .offices .office .office-info .office-contact a {
    display: block;
}


.prices .heading {
    text-align: left;
}

.prices .prices-list {
    margin: 0 0 60px 0;
    background-color: #fff;
}

.prices .prices-list .prices-headings {
    background-color: #3d563e;
    color: #fff;
    padding: 10px 20px;
}

.prices .prices-list .prices-headings .price-heading {
    font-weight: bold;
}

.prices .prices-list .prices-headings .price-heading span {
    display: block;
}

.prices .prices-list .prices-row:hover {
    background-color: #f3f3f3;
}

.prices .prices-list {
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
}

.prices .prices-list .prices-row {
    border-bottom: 1px solid #c3c3c3;
    padding: 15px 20px;
}

.prices .prices-list .prices-row:last-child {
    border: 0;
}

.prices .prices-list .prices-row .addition-info {
    margin: 10px 0 0 0;
}

.prices .prices-list .prices-row .addition-info .price-label {
    position: relative;
    padding: 0 0 0 15px;
}

.prices .prices-list .prices-row .addition-info .price-label:before {
    content: "";
    height: 3px;
    width: 3px;
    position: absolute;
    top: 9px;
    left: 0;
    display: block;
    background-color: #222;
}

.certificates hr,
.prices hr {
    margin: 60px 0 55px;
}

.certificates .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;

    background: url('../imgs/certificates.jpg') center center no-repeat;
    background-size: cover;
}

.certificates .heading {
    text-align: left;
}

.certificates .btn {
    margin-right: 20px;
}


.survey .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;

    background: url('../imgs/survey.jpg') top center no-repeat;
    background-size: auto;
}

.survey .prices {
    margin: 60px 0 0 0;
}

.survey .prices .survey-no {
    border: 0;
    outline: none;
    background: url('../imgs/icons/no.svg') center center no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.survey .prices .survey-na {
    border: 0;
    outline: none;
    background: url('../imgs/icons/na.svg') center center no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.survey .prices .survey-yes {
    border: 0;
    outline: none;
    background: url('../imgs/icons/yes.svg') center center no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.survey .prices .survey-no.selected,
.survey .prices .survey-no:hover {
    background: url('../imgs/icons/no-hover.svg') center center no-repeat;
}

.survey .prices .survey-na.selected,
.survey .prices .survey-na:hover {
    background: url('../imgs/icons/na-hover.svg') center center no-repeat;
}

.survey .prices .survey-yes.selected,
.survey .prices .survey-yes:hover {
    background: url('../imgs/icons/yes-hover.svg') center center no-repeat;
}

.survey .prices .prices-list {
    margin: 0 0 30px 0;
}

.survey .prices .prices-list .price-label {
    text-transform: uppercase;
}

.survey .survey-form {
    box-shadow: 0px 3px 20px rgba(208, 208, 208, 0.7);
    padding: 50px 35px;
    margin: 0 0 30px 0;
}

.survey .survey-form h3 {
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.survey .survey-form .form-control {
    resize: none;
}

.survey .survey-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.survey .btn {
    float: right;
}

.clients .intro {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;

    background: url('../imgs/clients.jpg') center center no-repeat;
    background-size: cover;
}

.clients .heading {
    text-align: left;
}

.clients hr {
    margin: 0;
}

.clients .owl-banks {
    margin: 40px 0 0 0;
}

.owl-banks a {
    display: block;
    padding: 0 20px;
}

.owl-banks .owl-stage-outer {
    padding: 20px 0;
}

.owl-banks a img {
    box-shadow: 0px 4px 20px rgba(208, 208, 208, 0.4);
}

.customer-satisfaction {
    background: url('../imgs/customer-satisfaction.jpg') center center no-repeat;
    background-size: cover;
}

.customer-satisfaction .heading {
    text-align: left;
}




.blog-list h1 {
    font-size: 48px;
    line-height: 58px;
    margin: 0 0 20px 0;
}

.blog-list .post {
    margin: 0 0 80px 0;
}

.blog-list .post-title {
    margin: 30px 0;
}

.blog-list .post-title h4 a {
    font-size: 34px;
    line-height: 40px;
    color: #222;
}

.blog-list .post-title h4 a:hover {
    color: #3D563E;
}

.blog-list .post-info .btn {
    margin: 30px 0 0 0;
}

.blog-list .post-info p:last-of-type {
    margin: 0;
}

.blog-list .post-date {
    margin: 30px 0 0 0;
    text-align: center;
    padding-bottom: 50px;
    border-right: 2px solid #ddd;
}

.blog-list .post-date span {
    font-size: 34px;
    line-height: 40px;
    color: #3D563E;
    font-weight: bold;
    display: block;
}


.blog-view .post-title h1 {
    font-size: 34px;
    line-height: 40px;
    color: #222;
    margin: 30px 0;
}

.blog-view .post-meta {
    margin: 0 0 20px 0;
}

.blog-view .post-meta .post-date:after {
    content: "/";
    position: absolute;
    right: -20px;
}

.blog-view .post-meta .post-date,
.blog-view .post-meta .post-author {
    margin-right: 30px;
    display: inline-block;
    position: relative;
}

.blog-view .post-info {
    margin: 30px 0 60px;
}

blockquote {
    border-left: 2px solid #ccc;
    padding-left: 30px;
    font-size: 14px;
}

.post-prev {
    text-align: left;
    display: block;
}

.post-prev i {
    margin-right: 5px;
    font-size: 16px;
}

.post-next {
    text-align: right;
    display: block;
}

.post-next i {
    margin-left: 5px;
    font-size: 16px;
}

.post-prev,
.post-next {
    text-transform: uppercase;
}

.post-prev:hover,
.post-next:hover {
    color: #3D563E;
}

.post-prev.inactive,
.post-next.inactive {
    color: #ccc;
}


aside .widget {
    margin: 0 0 50px 0;
}

aside .widget .heading {
    text-align: left;
    margin: 0 0 15px 0;
}

aside .widget-categories ul li {
    display: block;
    border-bottom: 1px solid #ccc
}

aside .widget-categories ul li a:before {
    content: "\f105";
    font-family: 'FontAwesome';
    margin-right: 5px;
    display: inline-block;
    font-size: 16px;
}

aside .widget-categories ul li a {
    display: block;
    padding: 8px 0;
    text-transform: uppercase;
}

aside .widget-categories ul li a span {
    float: right;
    color: #ccc;
}


aside .widget-popular-posts .heading {
    margin: 0 0 30px 0;
}

aside .widget-popular-posts li {
    border-bottom: 1px solid #ccc;
    padding: 25px 0;
}

aside .widget-popular-posts li:first-child {
    padding-top: 0;
}

aside .widget-popular-posts .popular-post-date {
    margin: 0 0 10px 0;
}

aside .widget-popular-posts .popular-post-title a {
    font-weight: bold;
    color: #222;
}

aside .widget-popular-posts .popular-post-title a:hover {
    color: #3D563E;
}


.references .heading {
    text-align: center;
}

.references .reference {
    box-shadow: 0px 4px 20px rgba(208, 208, 208, 0.4);
    margin: 20px;
    padding: 30px;
}

.references .reference .reference-author {
    font-weight: bold;
}

.references .reference .reference-posiiton {
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.references .reference .reference-more {
    display: table;
    margin: 20px 0 0 auto;
    text-transform: uppercase;
}

.references .reference .reference-more .fa {
    font-size: 16px;
    margin-left: 5px;
}

/*  footer  */
footer {
    background: #222222 url('../imgs/big-logo.svg') center center no-repeat;
    background-size: 80%;
    padding: 60px 0;
    position: relative;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    background: url('../imgs/divider.svg') top center no-repeat;
    width: 100%;
    height: 5px;
    background-size: cover;
}

footer h4 {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

footer .footer-menu li {
    margin: 0 0 5px 0;
}

footer .footer-menu li:before {
    background-color: #fff;
}

footer .footer-menu li a {
    color: #acacac;
}

footer .footer-menu li a:hover {
    color: #f0f0f0;
}

.copyright {
    background-color: #191919;
    padding: 20px 0;
}

.copyright .copyright-menu li {
    display: inline-block;
}

.copyright .copyright-menu li:before {
    background-color: #fff;
}

.copyright .copyright-menu li a {
    color: #acacac;
}

.copyright .copyright-menu li:first-of-type {
    list-style: none;
}

.copyright .copyright-menu li a:hover {
    color: #f0f0f0;
}

.copyright .copyright-text {
    text-align: center;
    color: #5d5d5d;
}

.copyright .social {
    text-align: right;
}

.copyright .social li {
    display: inline-block;
    margin-left: 15px;
}

.copyright .social li a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    display: block;
    text-align: center;
    border-radius: 100%;
    background-color: #fff;
    color: #222;
}

.copyright .social li a:hover {
    background-color: #3D563E;
    color: #fff;
}



.cstm-pagination {
    display: table;
    margin: 0 auto;
}

.cstm-pagination ul {
    font-size: 0;
}

.cstm-pagination ul li {
    display: inline-block;
    font-size: 12px;
}

.cstm-pagination ul li .page-numbers {
    font-size: 12px;
    line-height: 12px;
    display: block;
    padding: 9px 12px;
    border: 2px solid #222;
    color: #fff;
    font-weight: 700;
    margin: 0 4px;
    background-color: #222;
}

.cstm-pagination ul li.active .page-numbers,
.cstm-pagination ul li .page-numbers:hover {
    background-color: #bcbcbc;
    border-color: #bcbcbc;
}


.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 6px;
    border-radius: 0;
}

.owl-carousel .owl-nav {
    width: 100%;
}

.owl-carousel .owl-nav button .fa {
    font-size: 60px;
    line-height: 60px;
    height: 63px;
    display: block;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -60px;
    margin-top: -58px;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -60px;
    margin-top: -58px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: #869791;
}

.owl-theme .owl-nav [class*=owl-],
.owl-theme .owl-dots .owl-dot:focus {
    outline: none;
}

.owl-theme .owl-dots {
    margin: 30px 0 0 0;
}



.radio,
.checkbox {
    padding: 0 0 0 26px;
    position: relative;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    position: absolute;
}

.checkbox label::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    border: 1px solid #cccccc;
    background-color: #fff;
}

.checkbox label::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 0;
    font-size: 12px;
    color: #555555;
}


.checkbox input[type="checkbox"]:checked+label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}


.radio label::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;

    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;

    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
}

.radio label::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background-color: #555555;

    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);

    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.radio input[type="radio"]:checked+label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}


.myaccordion {
    margin: 50px auto 0;
}

.myaccordion .card {
    margin: 0 0 7px 0;
}

.myaccordion .card,
.myaccordion .card:last-child .card-header {
    border: none;
}

.myaccordion .card-header {
    border: 0;
    background-color: #222;
    border-radius: 0;
    padding: 0;
}

.myaccordion .fa-stack {
    font-size: 14px;
    background-color: #3D563E;
    color: #fff;
    padding: 10px 15px;
    width: 45px;
    height: 100%;
    margin-right: 20px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}

.myaccordion .card-header button {
    border: 0;
    background-color: transparent;
    outline: none;
    color: #fff;
    position: relative;
    padding: 12px 12px 12px 65px;
    width: 100%;
    text-align: left;
}

.myaccordion button:focus {
    outline: none;
}

.myaccordion li + li {
    margin-top: 10px;
}


.map-container {
    width: 1110px;
    position: absolute;
    top: 10%;
    left: 50%;
    margin-left: -555px;
}