.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

::-webkit-input-placeholder {
    color: #fff;
    opacity: .7;
}

:-moz-placeholder {
    color: #fff;
    opacity: .7;
    font-weight: 300;
}

::-moz-placeholder {
    color: #fff;
    opacity: .7;

}

:-ms-input-placeholder {
    color: #fff;
    opacity: .7;
}

::-ms-input-placeholder {
    color: #fff;
    opacity: .7;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a:focus {
    outline: 0 solid;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 700;
    color: #1D2026;

}

h1,
h2 {
    font-family: 'Montserrat', sans-serif;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: rgba(29, 32, 38, 0.749);
    font-size: 14px;
    line-height: 26px;

}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 80px;
}

.section-title h1 {
    margin: 0;
    font-weight: 400;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 20px;
}

.section-title h1:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 2px;
    content: "";
    background: #709DDB;
    margin-left: -25px;
}

.section-title p {
    margin: 0;
    padding-top: 20px;
}

.alt-bg {
    background: #FBFBFB;
}

.theme-default-btn {
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    border: 1px solid #fff;
    padding: 12px 30px;
    transition: .3s;
    font-size: 12px;
    word-spacing: 5px;
}

.theme-default-btn:hover {
    color: #1D2026;
    background: #fff;
    border-color: #fff;
}

.contact-btn {
    display: inline-block;
    color: #fff;
    text-transform: capitalize;
    border: 1px solid #fff;
    padding: 12px 30px;
    transition: .3s;
    font-size: 12px;
    word-spacing: 5px;
    background-color: transparent;
}

.contact-btn:hover {
    color: #1D2026;
    background: #fff;
    border-color: #fff;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(76, 103, 174);
    background: -moz-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: linear-gradient(135deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c67ae', endColorstr='#4993b3', GradientType=1);
    z-index: 999999;
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/loader.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

.main-navigation #mainNav {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 3;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 25px 0;
}

#sticky-wrapper {
    position: relative;
    z-index: 99;
}

#sticky-wrapper.is-sticky #mainNav {
    padding: 18px 0;
}

#sticky-wrapper.is-sticky #mainNav {
    background: rgb(76, 103, 174);
    background: -moz-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: linear-gradient(135deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c67ae', endColorstr='#4993b3', GradientType=1);
    opacity: .9;
}

#mainNav .navbar-nav .nav-link {
    color: #fff;
    text-transform: capitalize;
    position: relative;
    margin: 5px 14px;
    padding: 4px 0;
    font-size: 12px;
    letter-spacing: 1px;
    transition: .3s;
    font-weight: 500;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active,
#mainNav .navbar-nav .nav-link:focus {
    color: #1D2026;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.navbar-brand:hover {
    text-decoration: none;
    color: #fff;
}

#home {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-image: url(../images/bg.jpg);
}

#home:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: rgb(76, 103, 174);
    background: -moz-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: linear-gradient(135deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c67ae', endColorstr='#4993b3', GradientType=1);
    opacity: .9;
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 65px;
}

.hero-content p {
    margin: 0;
    color: #fff;
    margin: 25px 0;
}

.about-details {
    padding-right: 30px;
}

.about-details h3 {
    text-transform: uppercase;
    font-size: 22px;
    margin: 0;
    font-weight: 400;
}

.about-details h2 {
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 1px;
    word-spacing: 2px;
    margin: 30px 0;
}

.about-details p {
    line-height: 2;
    margin: 0;
}

.about-details a {
    border: 1px solid #1D2026;
    color: #1D2026;
    margin-top: 30px;
}

.about-details a:hover {
    color: #fff;
    background: #709DDB;
    border-color: #709DDB;
}

.person-image img {
    max-height: 430px;
    width: auto;
}

.single-service-item {
    background: #fff;
    padding: 30px;
    box-shadow: 0 15px 35px 0 rgba(152, 170, 198, 0.2);
}

.service-img img {
    max-width: 64px;
}

.services-content h3 {
    text-transform: uppercase;
    font-size: 20px;
    margin: 20px 0;
    word-spacing: 5px;
}

.services-content li {
    text-align: left;
    padding-left: 10px;
}

.portfolio_filter {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio_filter ul {
    margin: 0;
    padding: 0;
}

.portfolio_filter li {
    list-style: none;
    display: inline-block;
    cursor: pointer;
    border: 1px solid;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0 5px;
    padding: 8px 24px;
    letter-spacing: 1px;
    font-size: 12px;
    -webkit-transition: .3s;
    transition: .3s;
}

.portfolio_filter li:hover {
    color: #709DDB;
    border-color: #709DDB;
}

.select-cat {
    color: #212121;
    border-color: #212121;
}

.single_item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.col-sm-6.col-md-4:nth-last-child(-n+3) .single_item {
    margin-bottom: 0;
}

.single-item-img {
    position: relative;
    overflow: hidden;
}

.single_item .img-overlay {
    background: rgb(76, 103, 174);
    background: -moz-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: linear-gradient(135deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c67ae', endColorstr='#4993b3', GradientType=1);
    opacity: .7;
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1) 0s;
    width: 0;
}

.single_item .link:hover .img-overlay {
    height: 100%;
    left: 0;
    width: 100%;
}

.single_item .link .img-overlay i {
    color: #FFF;
    font-size: 35px;
    margin-top: -18px;
    position: absolute;
    top: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 1, 1) 0s;
    transition: all 0.4s cubic-bezier(0.4, 0, 1, 1) 0s;
}

.single_item .link:hover .img-overlay i {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.single_item img {
    width: 100%;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.single_item img:hover {
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.single_item:focus {
    outline: medium none !important;
}

.single-price-box {
    padding: 80px 30px;
}

.single-price-box.active {
    background: #fff;
    box-shadow: 0 15px 35px 0 rgba(152, 170, 198, 0.2);
}

.pricing-header h4 {
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
}

.pricing-header h3 {
    margin: 30px 0;
    font-size: 40px;
    font-weight: 300;
    color: #709DDB;
    font-family: 'Montserrat', sans-serif;

}

.pricing-header h3 span {
    display: block;
    opacity: .8;
    text-transform: capitalize;
    font-size: 32%;
}

.pricing-content ul li {
    padding-bottom: 10px;
}

.pricing-content ul li:last-child {
    padding: 0;
}

.pricing-btn {
    display: inline-block;
    margin-top: 30px;
    color: #709DDB;
    text-transform: capitalize;
    font-size: 12px;
    border: 1px solid #709DDB;
    font-weight: 600;
    padding: 10px 30px;
    word-spacing: 5px;
    transition: .3s;
}

.pricing-btn:hover,
.pricing-btn.active {
    background: #709DDB;
    color: #fff;
}

.single-client-slide {
    padding: 30px;
}

.review-content p {
    margin: 20px 0;
}

.review-client-info h4 {
    margin: 0;
    text-transform: capitalize;
    font-size: 22px;
}

.review-img img {
    max-width: 40px;
    margin-left: auto;
    margin-right: auto;
}

#contact {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-image: url(../images/contact.jpg);
}

#contact:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
    background: rgb(76, 103, 174);
    background: -moz-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    background: linear-gradient(135deg, rgba(76, 103, 174, 1) 0%, rgba(76, 103, 174, 1) 0%, rgba(73, 147, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4c67ae', endColorstr='#4993b3', GradientType=1);
    opacity: .9;
}

#contact .section-title h1:after {
    background: #fff;
}

#contact .section-title h1,
#contact .section-title p {
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    transition: .3s;
    padding: 10px;
    opacity: .7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fff;
}

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

.contact-form textarea {
    resize: none;
}

.contact-form .theme-default-btn {
    margin-top: 50px;
}

.contact-form .contact-btn {
    margin-top: 50px;
}

.single-contact-box img {
    max-width: 45px;
}

.single-contact-box p,
.single-contact-box a {
    font-weight: 600;
    margin-top: 15px;
    color: rgba(29, 32, 38, 0.749);
}

#footer {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-contetn p {
    margin: 0;
    text-transform: capitalize;
    font-size: 12px;
    word-spacing: 3px;
}

.footer-contetn p a {
    color: rgba(29, 32, 38, 0.749);
}

.list-styled li {
    list-style: circle inside ;
}
