/*
* Flying Bird V1
*
*/


/* Table of Content
==================================================
  #Reset
  #Basic Styles
  #Site Styles
  #Typography
  #Links
  #Lists
  #Images
  #Buttons
  #Forms
  #Misc
  #Home Slider
  #Services
  #Overview
  #Featured Works
  #Latest Blog Home
  #Testimonials
  #Pricing Table
  #Why Choose Us
  #Counter
  #Footer
  #About Section
  #Our Team
  #Services
  #Blog Page
  #Pagniation
  #Sidebar
  #Blog Detail Page
  #Map Section

  */


/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}



/* #Basic Styles
================================================== */
body {
    background: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Open Sans', sans-serif;
    color: #52626f;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

button, select, input {
    font-family: 'Open Sans', sans-serif;
}


/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    color: #2952A1;
    font-weight: bold;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;

}

h1 { font-size: 70px; line-height: 90px; margin-bottom: 20px; text-transform: uppercase;}
h2 { font-size: 60px; line-height: 60px; margin-bottom: 20px; text-transform: uppercase; }
h3 { font-size: 28px; line-height: 34px; margin-bottom: 20px; text-transform: uppercase; }
h4 { font-size: 20px; line-height: 20px; margin-bottom: 20px; text-transform: uppercase; }
h5 { font-size: 17px; line-height: 24px; }
h6 { font-size: 14px; line-height: 21px; }

p { margin: 0 0 20px 0; }
p img { margin: 0; }
em { font-style: italic; }
strong { font-weight: bold; }
small { font-size: 80%; }

/*  Blockquotes  */
blockquote, blockquote p { font-size: 20px; line-height: 26px; color: #000; font-style: italic; font-weight: 700; }
blockquote { margin:0 0 25px 19px; padding: 30px 20px 30px 19px; border:1px solid #000; border-left: 10px solid #000; }
blockquote cite { display: block; font-size: 12px; color: #555; }
blockquote cite:before { content: "\2014 \0020"; }
blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
a, a:visited { color: #101010; text-decoration: none; outline: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s; }
a:hover, a:focus { color: #f2013f; text-decoration: underline; }
p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
ul, ol { margin-bottom: 20px; }
ul { list-style: none outside; }
ol { list-style: decimal; }
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }
ul ul, ul ol,
ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
ul ul li, ul ol li,
ol ol li, ol ul li { margin-bottom: 6px; }
li { line-height: 18px; margin-bottom: 12px; }
ul.large li { line-height: 21px; }
li p { line-height: 21px; }

/* #Images
================================================== */

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


/* #Buttons
================================================== */


.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background: #E41B21;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 46px;
    padding: 0 20px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    letter-spacing: 1px;
    min-width: 170px;
    box-sizing: border-box;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    color: #fff;
    background: #2952A1;
}

.btn:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    color: #fff;
    background: #101010;
}

.btn.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center; }

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.btn-lg {
    font-size: 12px;
    padding: 16px 44px 16px 34px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.btn-secondary {
    background-color: #DC143C;
    color: #fff;
    border-bottom: 2px solid #fff;
}


/* #Forms
================================================== */

form {
    margin-bottom: 20px;
}

fieldset {
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="tel"],
textarea,
select {
    border: 1px solid #dedede;
    padding: 6px 29px;
    outline: none;
    font-size: 16px;
    color: #52626f;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    margin-bottom: 30px;
    background: #fff;
    height: 60px;
    box-sizing: border-box;

}

select {
    padding: 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    border: 1px solid #aaa;
    color: #444;
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
    box-shadow:  0 0 3px rgba(0,0,0,.2);
}

textarea {
    min-height: 190px;

}

label,
legend {
    display: block;
    font-weight: bold;
    font-size: 13px;

}

select {
    width: 220px;
}

input[type="checkbox"] {
    display: inline;
}

label span,
legend span {
    font-weight: normal;
    font-size: 13px;
    color: #444;
}

.section {
    width: 100%;
    padding: 100px 0;
    clear: both;
}


/*.container, .container .row {
    padding: 0;
}*/

.btn{
    font-family: 'Open Sans', sans-serif;
}



/* Header */
.header {
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
}

.header .logo {
    float: left;
    padding: 0 0 0 30px;
}

.header .header-con {
    background: #fff;
}


/* Menu */

#top-menu, #top-social {
    margin-top: 35px;
    margin: 35px 50px 0 0;
    float: right;
}

#top-menu {
    position: relative;
}

#top-menu .menu-items {
    margin: -5px 40px 0 0;
    padding: 0;
    display: block;
}

#top-menu.active .menu-items {
    display: block;
}

#top-menu.active .menu-items.active>li {
    opacity: 1;
    top: 0;
}

#top-menu a {
    color: #fff;
}

#top-menu .menu-items>li {
    display: inline-block;
    opacity: 0;
    position: relative;
    top: -7px;
    transition: top .3s ease .1s, opacity .3s ease .1s;
    font-size: 15px;
}

#top-menu .menu-items>li:nth-child(2n) {
    transition: top .3s ease .2s, opacity .3s ease .2s;
}

#top-menu .menu-items>li:nth-child(3n) {
    transition: top .3s ease .3s, opacity .3s ease .3s;
}

#top-menu .menu-items>li:nth-child(4n) {
    transition: top .3s ease .4s, opacity .3s ease .4s;
}

#top-menu .menu-items>li:nth-child(5n) {
    transition: top .3s ease .5s, opacity .3s ease .5s;
}

#top-menu .menu-items>li:nth-child(6n) {
    transition: top .3s ease .6s, opacity .3s ease .6s;
}

#top-menu .menu-items>li:nth-child(7n) {
    transition: top .3s ease .7s, opacity .3s ease .7s;
}

#top-menu .menu-items>li:nth-child(8n) {
    transition: top .3s ease .8s, opacity .3s ease .8s;
}

#top-menu .menu-items>li:nth-child(9n) {
    transition: top .3s ease .9s, opacity .3s ease .9s;
}


#top-menu .menu-items>li:last-child>a {
    margin-right: 0;
}

#top-menu .menu-items>li>a {
    margin-right: 5px;
    font-size: 14px;
    text-transform: uppercase;
    color: #DC143C;
}

#top-menu .menu-items>li.active>a,
#top-menu .menu-items>li>a:focus,
#top-menu .menu-items>li>a:hover {
    color: #f2013f;
    text-decoration: none;
}

#top-menu .nav-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    cursor: pointer;
}

#top-menu .nav-trigger>.icon-bar {
    display: inline-block;
    width: 34px;
    height: 30px;
    position: relative;
}

#top-menu .nav-trigger>.icon-bar>span {
    display: block;
    width: 100%;
    border-bottom: 6px solid #E41B21;
    transition: all .3s ease-in-out;
    position: absolute;
    top: 50%;
    left: 0;
}

#top-menu .nav-trigger>.icon-bar>span:first-child {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    top: 0;
}

#top-menu .nav-trigger>.icon-bar>span:nth-child(2) {
    top: 11px;
    left: 0;
}

#top-menu .nav-trigger>.icon-bar>span:last-child {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    top: 23px;
}

#top-menu .nav-trigger>.text {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    margin-left: 20px;
    width: 50px;
    height: 30px;
    position: relative;
    color: #fff;
}

#top-menu .nav-trigger>.text>span:first-child {
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

#top-menu .nav-trigger>.text>span:last-child {
    left: -50%;
    right: inherit;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#top-menu .nav-trigger>.text>span {
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    right: -50%;
    transition: all .3s ease-in-out;
}


#top-menu.active .nav-trigger>.icon-bar>span {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: inherit;
}

#top-menu.active .nav-trigger>.icon-bar>span:first-child {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

#top-menu.active .nav-trigger>.icon-bar>span:nth-child(2) {
    opacity: 0;
    display: none;
}

#top-menu.active .nav-trigger>.icon-bar>span:last-child {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

#top-menu.active .nav-trigger>.text>span:first-child {
    right: 0;
    opacity: 0;
}

#top-menu.active .nav-trigger>.text>span:last-child {
    top: 50%;
    left: 50%;
    right: inherit;
    opacity: 1;
}


/* Menu Style */
.main-nav > li {
    position: relative;
    display: inline-block;
}

.main-nav > li a {
    display: block;
    line-height: 22px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 10px;
    color: #555;
    letter-spacing: 1px;
}

.main-nav > li .navi-level-2 {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    height: auto;
    min-width: 200px;
    display: block;
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    z-index: 99999;
    display: none;
    padding: 0;
    background: #121212;
    margin-left: 10px;
}

.main-nav > li .navi-level-2 li {
    display: block;
    position: relative;
    width: 100%;
}

.main-nav > li .navi-level-2 li a {
    display: block;
    padding: 10px 20px;
    width: 100%;
    color: #999;
    transition: all 0.1s;
}

.main-nav > li .navi-level-2 li a:hover {
    color: #fff;
    background: #f2013f;
    text-decoration: none;
}

.main-nav > li .navi-level-2 li:last-child {
    border-bottom: none;
}

.main-nav > li .fadeInUp {
    animation-duration: .4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 10%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.main-nav > li .open-navi-2 {
    display: block;
}

.main-nav > li:last-child a:after {
    display: none;
}

.main-nav li:last-child ul.navi-level-2 {
    right: 0;
    left: auto;
}
.sub-navi {
    text-align: right;
}
.sub-navi > li a {
    padding-left: 15px;
    padding-right: 15px;
}
.sub-navi > li:nth-last-child(2) a {
    padding-right: 0;
}
.sub-navi > li:nth-last-child(2) a:after {
    display: none;
}


/* Hover Effect Link */
.main-nav li span {
    z-index: 3;
}





/* Home Slider */

.owl-carousel {
    float: left;
}

.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item {
    /* margin-right: 0 !important; */
}


.home-slider {
    float: left;
    width: 100%;
    overflow: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.home-slider .item {
    height: 750px;
    position: relative;
}

.home-slider .typo {
    position: absolute;
    left: 90px;
    top: 294px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 70px;
    line-height: 70px;
    letter-spacing: 3.6px;
    z-index: 10;
}

.home-slider .typo h2 {
    color: #fff;
    font-size: 70px;
}

.home-slider .typo .highlighted {
    background: #f2013f;
    padding: 0 10px;
}


.home-slider:hover .owl-nav .owl-next {
    right: 15px;
}

.home-slider .slider-overlay {
    position: absolute;
    top:0;
    left: 0;
    /*background: rgba(0, 0, 0, 0.2);*/
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-slider .typo-wrapper {
    position: relative;
}

.home-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}
.home-slider .owl-nav i {
    color: #fff;

}

.home-slider .owl-nav .owl-prev,
.home-slider .owl-nav .owl-next {
    background: #000;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    font-size: 30px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    opacity: 0.8;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    cursor: pointer;
}

.home-slider .owl-nav .owl-prev:hover,
.home-slider .owl-nav .owl-next:hover {
    opacity: 1;
    background: #E41B21;
}

.home-slider .owl-nav .owl-prev {
    left: -100px;
}

.home-slider .owl-nav .owl-next {
    right: -100px;
}

.home-slider:hover .owl-nav .owl-prev {
    left: 15px;
}

.home-slider:hover .owl-nav .owl-next {
    right: 15px;
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9999;
}

.home-slider .owl-dot {
    width: 12px;

    height: 12px;
    border-radius: 50px;
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
    background: transparent;
    border:2px solid #fff;
}


.home-slider .owl-dot.active,
.home-slider .owl-dot:hover {
    width: 12px;
    height: 12px;
    background: #fff;

}

.home-slider .item {
    background-repeat: no-repeat;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}






/* Services*/
.focus-point .content {
    text-align: center;
}
.focus-point-icon {
    text-align: center;
}
.focus-point-icon i {
    font-size: 60px;
}

.focus-point-content h4 {
    color: #101010;
    margin: 18px 0 12px 0;
    text-transform: uppercase;
}

.focus-point-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #52626f;
    margin-bottom: 0;
}
.focus-point-content .line {
    background: #f2013f;
    height: 2px;
    width: 70px;
    margin: 14px auto 0;
}


/*Overview  */
.overview-section {
    background: #000;
}

.focus-title h2{
    text-align: center;
    margin-bottom: 51px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 42px;
}

.focus-title p{
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 48px;
    font-size: 26px;
    line-height: 40px;
    color: #fff;
    text-align: center;
}

.overview-section .content {
    text-align: center;
}
.overview-section .btn {
    margin-top: 10px;
    color: #fff;
}

/*Featured Works */
.featured-section {
    text-align: center;
    padding-bottom: 0;
}

.featured-section .container-fluid {
    padding: 0;
}

.featured-section .portfolio-items > div {
    padding: 0;
}

.recent-wrap {
    text-align: center;
}

.recent-work {
    position: relative;
    float: left;
}

.portfolio-filter {
    margin: 40px 0 0;
    text-align: center;
}

.portfolio-items .mix {
    display: none;
}

.filters {
    margin-bottom: 49px;
}

.filters .filter {
    display: inline-block;
    margin-right: 4px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 28px;
    list-style: none;
    cursor: pointer;
    color: #484f58;
    border: 1px solid #101010 ;
    font-weight: 700;
    min-width: 80px;
}

.filters .filter:hover {
    border: 1px solid #DC143C;
    color: #DC143C;

}

.filters .filter.active {
    border: 1px solid #DC143C;
    color: #fff;
    background: #DC143C;
}

.featured-section .recent-work a {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.featured-section .recent-work a:hover {
    text-decoration: none;
}



.recent-work img {
    width: 100%;
    float: left;
}

.recent-work:hover img {
    opacity: .90;
}

.portfolio-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    padding: 48px;
    transition: all 0.3s;
    -webkit-transition: all 0.3;

}

.portfolio-overlay .overlay-border {
    border:10px solid #e8e8e8;
    width: 100%;
    float: left;
    box-sizing: border-box;
}

.portfolio-overlay .overlay-border .inner {
    margin:36% 0;
    float: left;
    width: 100%;
}

.portfolio-overlay h3 a,
.portfolio-overlay span {
    color: #fff;
}

.portfolio-overlay h3 {
    margin: 10px 0;
    font-size: 20px;
    line-height: 24px;
    color: #f2013f;
    text-transform: uppercase;
    text-align: center;
}

.portfolio-overlay span {
    margin: 10px 0;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.recent-work:hover .portfolio-overlay {
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
    transform: translateY(0px);
}

.recent-work .work-info {
    margin-top: 23px;
}

.work-info h4 {
    margin-bottom: .8em;
}
.feature{
    text-align: center;
    overflow: hidden;
}
.main-title {
    margin-bottom: 37px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}

.main-title h2 {
    line-height: 44px;
    margin-bottom: 34px;
}

.main-title p {
    font-size: 20px;
    line-height: 30px;
    color: #52626f;
}

/* Latest Blog Home */

.blog-post-con .post-img,
.blog-post-con .post-img a,
.blog-post-con .post-img a img {
    float: left;
}

.blog-post-home {
    float: left;
}


.blog-post-home .post-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    color: #000;
    text-transform: uppercase;
    margin: 24px 0 8px 0;

}

.blog-post-home .post-time {
    color: #999999;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 9px;
}


.post-description {
    float: left;
    width: 100%;
    margin-bottom: 13px;
    color: #52626f;
    font-size: 16px;
    line-height: 24px;
}

.blog-post-home .read-more {
    font-weight: 700;
}

.blog-post-home .read-more:hover {
    text-decoration: underline;
}



/* Testimonials  */
.testimonials {
    background: url('../images/testimonial-bg.jpg') center center no-repeat;
    text-align: center;
    float: left;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.testimonial-carousel {
    padding: 150px 0 150px;
    background: rgba(0, 0, 0, 0.6);
}


.testimonials .typo {
    position: relative;
    color: #fff;
    z-index: 10;
}

.testi-thumb {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 100px;
    display: inline-block;
    margin:0 auto;
}

.testimonials h4 {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    margin: 9px 0 1px;
    letter-spacing: 0;
}

.testimonials span {
    font-size: 14px;
    line-height: 24px;
    color: #ddd;
    text-transform: capitalize;
}

.testimonials p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    margin: 30px 0 0 0;
}


.testimonials .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}
.testimonials .owl-nav i {
    color: #fff;

}

.testimonials .owl-nav .owl-prev,
.testimonials .owl-nav .owl-next {
    background: #000;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    font-size: 30px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    opacity: 0.8;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    cursor: pointer;
}

.testimonials .owl-nav .owl-prev:hover,
.testimonials .owl-nav .owl-next:hover {
    opacity: 1;
    background: #f2013f;
}

.testimonials .owl-nav .owl-prev {
    left: -100px;
}

.testimonials .owl-nav .owl-next {
    right: -100px;
}

.testimonials:hover .owl-nav .owl-prev {
    left: 15px;
}

.testimonials:hover .owl-nav .owl-next {
    right: 15px;
}

.testimonials .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9999999999;
}
.testimonials .owl-dot {
    width: 12px;
    background: #fff;
    height: 12px;
    border-radius: 50px;
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
}


.testimonials .owl-dot.active,
.testimonials .owl-dot:hover {
    width: 12px;
    height: 12px;
    background: transparent;
    border:2px solid #fff;
}


/* Pricing Table */
.pricing-table-con {
    padding: 0 30px;
    float: left;
    width: 100%;
}

.pricing-table-con .plan-table {padding: 48px 0;}
.plan-table {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
    border:1px solid #2952A1;
    min-height: 401px;
}

#plans .plan-table{
    padding-bottom: 50px;
}
.plan-table h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color:#2952A1;
}

.plan-table p {
    font-size: 30px;
    font-weight: 400;
    color:#E41B21;
    text-transform: uppercase;
}

.plan-wrap .title p{
    font-size: 12px;
    font-weight: 300;
    margin: 0;

    color:#DC143C;
}

.plan-table .plan-wrap {
    width: 100%;
    margin-bottom: 0;
}

.plan-table .plan-wrap li {
    font-size: 14px;
    line-height: 30px;
    color: #52626f;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.plan-table .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 50px;
    /* width: 85%; */
    margin: 20px 10px 20px;
    color: #2952A1;
    border: 3px solid #2952A1;
    box-sizing: border-box;
    padding: 6px 0 6px;
}

.plan-table .price.selected {
    color:#fff;
    background: #E41B21;
    border-color: #E41B21;
}

.plan-table .price span {
    font-size: 21px;
    font-weight: bold;
    text-transform: lowercase;
}


.plan-wrap .price p.best-plan-price {
    border-color: transparent;
    background: #484f58;
}



/* Why Choose Us */
.why-choose-us {
    padding: 0;
    position: relative;
    border-top: 1px solid #2952A1;

}

.why-choose-us .row {
    margin: 0;
}

.why-choose-us .left-col {
    position: absolute;
    top:0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('../images/koleso2.jpg') top center no-repeat;
    background-size: cover;
}

.why-choose-us .right-col {
    width: 50%;
    float: right;
    padding: 128px 40px 131px 30px;
    background: #2952A1;
    box-sizing: border-box;
}

.why-choose-us .right-col .content {
    width: 100%;
    float: left;
    max-width: 570px;
}

.why-choose-us .right-col h3 {
    color: #fff;
    font-size:40px;
    margin-bottom: 42px;
}

.why-choose-us .right-col p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.why-choose-us .right-col .btn {
    margin-top: 14px;
}


/* Counter */
.info-counter {
    text-align: center;
}

.info-counter-row {
    margin-bottom: 31px;
}

.info-counter-icon,
.info-counter-icon.fa {
    font-size: 30px;
    color: #DC143C;
}

.info-counter-content h5 {
    color: #000;
    font-size: 36px;
    margin-bottom:10px;
}

.info-counter-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #52626f;
    text-transform: uppercase;
}


/* Work */
.work-section {
    background-color: #DC143C;
    padding-top: 50px;
    padding-bottom: 50px;
}
.work h4{
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}


/* call to action */

.call-to-action {
    background-color: #f2013f;
    padding: 75px 0;
    width: 100%;
}

.call-to-action .content {
    text-align: center;
}

.call-to-action .content .btn {
    border:2px solid #fff;
}

.call-to-action-title{
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    margin-right:30px;
    display: inline;
}

/* Footer*/
.footer{
    background: #000;
    padding: 100px 0 50px 0;
}

.footer-widget h4{
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    margin: 4px 0 43px;
    text-transform: capitalize;
}

.footer-widget .line{
    background: #fff;
    height: 1px;
    width: 100%;
    margin: 13px 0 14px;
    float: left;
}

.addwidget p{
    color: #fff;
    text-align: left;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
}

.addwidget a {
    color: #fff;
}

.textwidget p{
    color: #fff;
    text-align: left;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 25px;
}

.textwidget a {
    color: #fff;
}

.textwidget .read-more {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-top: -17px;
    float: left;
}

.textwidget .read-more:hover {
    text-decoration: underline;
}


.textwidget .read-more span .fa {
    color: #fff;
    margin-right: 10px;
}

.footer-widget{
    text-align: left;
    font-weight: 300;
    margin-bottom: 50px;
}

.footer-widget ul {
    position: relative;
    padding: .6em 0;
    color: #FF4F58;
    list-style-type: disc;
}
.footer-widget ul:first-child {
    padding-top: 0;
    border-top: 0;
}

.fwidget ul {
    list-style: none;
}

.fwidget li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 22px;
}

.fwidget li a {
    color: #fff;

}

.textwidget li {
    color: #fff;
}

.social-set {
    width: 100%;
    padding-top: 12px;
    text-align: left;
}

.social-set i {
    color: #fff;
    font-size: 30px;
}

.social-set i:hover {
    color: #f2013f;
}

.social-set a {
    width: 50px;
    height: 40px;
    display: inline-block;
    text-align: center;
}

.copyright {
    border-top :1px solid #fff;
    margin-top: 29px;
}

.copyright p {
    text-align: center;
    color: #fff;
    padding-top: 34px;
    font-size: 14px;
}

/* About Section */

.secondry-header {
    background: url('../images/about-banner.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
}
.secondry-header:before{
    background-color: rgba(242, 1, 63, 0.9);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left:0;
}

.page-heading {
    color: #fff;
    font-size: 120px;
    line-height: 90px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 112px 0 28px;
    letter-spacing: 4px;
}

/* About Page Content */

.about-content {
    font-size: 20px;
    line-height: 30px;
    color: #52626f;
    text-align: center;
}

.about-thumb {
    width: 70px;
    height: 70px;
    border-radius: 100px;
    float: left;
}

.about-thumb img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-content .about-thumb-con {
    display: inline-block;
    text-align: center;
    margin-top: 42px;
}

.about-content p {
    margin-bottom: 30px;
}

.about-content .user-meta {
    text-align: left;
    margin-left: 44px;
    float: left;
}

.about-content .about-thumb-con h5 {
    margin-bottom: 3px;
    font-size: 20px;
    line-height: 30px;
    color: #52626f;
    font-weight: 700;
}

.about-content .about-thumb-con span {
    font-size: 16px;
    line-height: 24px;
    color: #52626f;
    font-weight: 400;
}


/* Our Team */
.our-team {
    background: #f9fafb;
    padding-bottom: 110px;
}

.our-team .team-member {
    float: left;
    margin-bottom: 40px;
    position: relative;
}
.our-team .team-member img {
    float: left;
}

.our-team .team-overlay {
    padding: 20px;
    position: absolute;
left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3;
}

.our-team .team-overlay h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #f2013f;
    text-transform: uppercase;
    text-align: center;
}

.our-team .team-member:hover .team-overlay {
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
    transform: translateY(0px);
}

.our-team .team-member a {
    color: #fff;
    font-size: 14px;
}

.our-team .team-member a:hover {
    text-decoration: none;
}

.team-overlay .overlay-border {
    border: 10px solid #e8e8e8;
    width: 100%;
    float: left;
    box-sizing: border-box;
}

.our-team .team-overlay .overlay-border .inner {
    margin: 36% 0;
    float: left;
    width: 100%;
}

.our-team .team-overlay .overlay-border .inner {
    margin: 44% 0;
    text-align: center;
}

.team-overlay span {
    margin: 10px 0;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}











/* Services */

.services {
    padding-bottom: 92px;
}

.service-box {
    text-align: left;
    margin-bottom: 57px;
}

.service-icon {
    float: left;
}

.service-icon i {
    display: block;
    font-size: 20px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #DC143C;
    color: #fff;
}

.service-content {
    float: left;
    padding: 0 0 0 63px;
    width: 100%;
    box-sizing: border-box;
    margin-top: -35px;
}

.service-content h4 {
    text-transform: uppercase;
    color: #000;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 18px;
}


.entry-meta,.meta-date a{
    color: #808080;
}

.service-box p {
    clear: both;
    font-size: 16px;
    line-height: 26px;
    color: #52626f;
}


/* Blog Page */

article.post {
    padding: 0;
    margin-bottom: 40px;
    float: left;
}

.entry-title h2 {
    color: #000;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
}

.entry-title h2 a:hover {
    text-decoration: none;
}

.entry-meta li {
    color: #999999;
    font-size: 16px;
    font-weight: 700;
}


.blog-news-column .post {
    position: relative;
    background: #ffffff;
}

.blog-news-column .image-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.image-box img {
    display: block;
    height: auto;
    width: 100%;
}

.blog-news-column .entry-meta {
    position: relative;
    margin-bottom: 8px;
    color: #777777;
    font-size: 13px;
    line-height: 20px;

}

.blog-news-column .entry-meta li {
    position: relative;
    display: inline-block;
    margin: 0px 5px;

}

.blog-news-column .entry-meta li:first-child {
    margin-left: 0px;
}

.blog-news-column .entry-meta a{
    color: #777777;
}

.blog-news-column .entry-meta li a {
    color:  #f2013f;
    font-weight: bold;
}

.blog-news-column .content-box {
    position: relative;
    padding: 15px 0px 0px;
}

.single-post .entry-content h4 {
    text-transform: none;
}

.blog-news-column .content-box .entry-content {
    position: relative;
    color: #52626f;
    width: 100%;
    text-decoration: none;
    outline: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding-bottom: 15px;

}

.blog-news-column .content-box .entry-content a {
    color:  #f2013f;
    font-weight: bold;
}

.content-box .entry-content h5{
    font-size: 17px;
    line-height: 24px;
    padding: 10px;
}


.seprator {
    background: #000;
    height: 6px;
    width: 100%;
    margin: 0 0px 37px;
    text-align: left;
    clear: both;
    float: left;
}

.post .seprator {
    margin: 22px 0px 0;
}



/* Pagniation */

.styled-pagination {
    position: relative;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    margin: 0px 3px 10px;
}

.styled-pagination li a.prev {
    padding: 6px 15px;
}

.styled-pagination li a {
    position: relative;
    display: block;
    line-height: 21px;
    padding: 6px 5px;
    font-size: 15px;
    text-transform: uppercase;
    min-width: 34px;
    background: #ececec;
    color: #1a1a1a;
    text-align: center;
    box-sizing: border-box;
}

.styled-pagination li a:hover {
    text-decoration: none;
    background: #000;
    color: #fff;
}

.styled-pagination li a.next{
    padding: 6px 15px;
    background: #000;
}

.styled-pagination li a.active {
    color: #f2013f;
}

.styled-pagination li a.active:hover {
    background: #ececec;
    cursor: default;
}

.styled-pagination li a i,
.styled-pagination li a:hover i {
    color: #fff;
}

/* Sidebar */
.sidebar {
    padding: 0 15px;
}

.blog-content .blog-sidebar{
    position: relative;
}

.sidebar-page-container .sidebar {
    margin-bottom: 30px;
    padding-top: 0px;
}

.widget {
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.widget-title, .widgettitle {
    position: relative;
    margin: 0 0 13px 15px;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
}

.widget ul {
    padding: 0 15px 46px 15px;
    margin: 0 0 0 0;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.widget ul li {
    margin-bottom: 26px;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

hr.line {
    color: #d5d5d5;
    background: #d5d5d5;
    width: 100%;
    float: left;
}

.line{
    border: solid #ddd;
    border-width: 1px 0 0;
    clear: both;
    height: 0;
    margin: 0px 0 13px;
}

.widget.widget_search .search-form label {
    position: relative;
}

.widget.widget_search .search-form label .search-field {
    height: 50px;
    margin-bottom: 0px;
    font-weight: 400;
    color: #52626f;
}

.widget.widget_search .search-form .search-submit {
    display: none;
}

.widget.widget_search .search-form label i {
    position: absolute;
    top: 13px;
    right: 20px;
    font-size: 22px;
    color: #000;

}

.widget.widget_search .search-form label .screen-reader-text {
    display: none;
}

.sidebar .list li a {
    position: relative;
    display: block;
    color: #141414;
    font-size: 12px;
    font-weight: bold;
    padding-left: 2px;
}

.widget .entry-title {
    font-size: 16px;
    line-height: 19px;
    color: #000;
    text-transform: none;
    margin-bottom: 7px;
}



/* Recent Post */
.widget.widget-recent-post .post {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 16px;
    padding-bottom: 20px;
    padding-left: 88px;
    position: relative;
}

.widget.widget-recent-post .post:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.sidebar .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 2px;
    width: 76px;
    height: 60px;
}

.sidebar .recent-posts .post {
    position: relative;
    font-size: 13px;
    color: #cccccc;
    padding-left: 90px;
    padding-top: 8px;
}

.sidebar .recent-posts .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 76px;
    height: 60px;
}

.post-thumb i{
    color: #00BFFF;
}

.sidebar .recent-posts .post .post-thumb img {
    display: block;
    width: 100%;
}

/* Social Bio */
.social-bio {
    width: 100%;
    padding-top: 12px;
    text-align: left;
}

.widget ul.social-bio li {
    float: left;
    margin: 0 10px 0 0;
    width: 34px;
    height: 34px;
    line-height: 34px;
}

.social-bio i {
    color: #fff;
    font-size: 16px;
}

.social-bio a {
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
    background: #000;
}

.social-bio a:hover {
    color: #fff;
    background: #f2013f;
}


/* Recent Tweets */
.widget-recent-tweets .tweets {
    position: relative;
    font-size: 13px;
    color: #cccccc;
    padding-left: 20px;
    padding-top: 0px;
    margin-bottom: 20px;
}

.link{
    color: #DC143C;
}

.widget-recent-tweets .tweets .post-thumb {
    position: absolute;
    left: 2px;
    top: 4px;
    width: 25px;
}
.widget-recent-tweets .tweets .post-thumb i{
    color: #00BFFF;
    font-size: 16px;
}

.widget-recent-tweets .tweets .post-thumb img {
    display: block;
    width: 100%;
}

.widget-recent-tweets .tweets h4 {
    font-size: 14px;
    margin: 0px 0px 3px;
    line-height: 24px;
    color: #52626f;
    font-weight: 600;
    text-transform: lowercase;
}

.widget-recent-tweets .tweets h4 a {
    color: #f2013f;

}


.widget-recent-tweets .post-info {
    font-size: 13px;
    color: #777777;
    text-transform: uppercase;
}




/* Instagram Gallery */
.widget-instagram .gallery {
    width: 102%;
    overflow: hidden;
}

.widget-instagram .gallery li {
    float: left;
    width: 100px;
    height: 100px;
    margin: 0 5px 5px 0;
    box-sizing: border-box;

}

.widget-instagram .gallery li img {
    float: left;
}

/* popular tags */
.widget-popular-tags .tags li {
    float: left;
    margin: 0 10px 10px 0;
}

.widget-popular-tags .tags a {
    position: relative;
    display: inline-block;
    line-height: 26px;
    padding: 1px 14px;
    border: 1px solid #eeeeee;
    color: #52626f;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.widget-popular-tags .tags a:hover {
    background: #f2013f;
    color: #fff;
    text-decoration: none;
}

.widget-popular-tags .tags {
    padding-bottom: 36px;
}


/* Blog Detail Page */

.single-post .entry-title h2 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: #000000;
    margin-top: -6px;
}

.single-post .entry-meta {
    margin-bottom: 28px;
}

.entry-meta li {
    float: left;
    margin-right: 12px;
}

.entry-meta li a {
    color: #f2013f;
}

.single-post .entry-image {
    float: left;
    margin-bottom: 37px;
}

.single-post .entry-image img {
    width: 100%;
    float: left;
}

.single-post .entry-content {
    font-size: 16px;
    line-height: 26px;
    color: #52626f;
    float: left;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 31px;
}

.blockquote {
    border:1px solid #000;
    border-left: 10px solid #000;
    margin:0 0 0 19px;
}


.quote {
    padding: 20px 20px 20px 20px;
    border: 1px solid #000;
    border-left: 6px solid #000;
    width: 620px;
    border-radius: 1px;
    margin-bottom: 20px;

}
.quote h4{
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    margin-bottom: 0 !important;

}


.quote p{
    text-align: left;
    color: #ddd;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
}

.single-post .tags {
    float: right;
    clear: both;
    margin-top: 20px;
    color: #999999;
    font-size: 14px;
    font-weight: 600;
}

.single-post .tags span {
    text-transform: uppercase;
    padding-right: 5px;
}

.single-post .tags a {
    color: #000;
}

.single-post .tags a:hover {
    color: #f2013f;
}

/* Post navigation */
.post-navigation {
    float: left;
    width: 100%;
    padding: 30px 0 30px 0;
}

.post-navigation a {
    display: inline-block;
    background: #000;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    min-width: 124px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.post-navigation a:hover {
    background: #f2013f;
    text-decoration: none;
}

.post-navigation a.left-nav i {
    color: #fff;
    padding-right:10px;
}

.post-navigation a.right-nav i {
    color: #fff;
    padding-left:10px;
}



/* About Author */
.author-bio-con {
    position: relative;
    padding: 15px 0 0px 0;
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.author-bio-con .post-thumb {
    color: #00BFFF;
    width: 130px;
    height: 130px;
    float: left;
    margin-right: 18px;
}
.author-bio-con .post-thumb img {
    display: block;
    width: 100%;
}
.author-bio-con .post-info{
    position: relative;
    color: #999999;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
}
.author-bio-con h4 {
    font-size: 20px;
    margin: 0px 0px 12px;
    line-height: 20px;
    color: #000;
    text-transform: none;
}

.author-bio-con h4 a {
    color: #000;
}

.author-bio-info {
    float: left;
    width: 620px;
}


.author-bio-con .social-bio {
    width: 100%;
    text-align: left;
    float: left;
    padding: 0;
    margin-bottom: 28px;
}

.author-bio-con ul.social-bio li {
    float: left;
    margin: 0 10px 0 0;
    width: 34px;
    height: 34px;
    line-height: 34px;
}

.author-bio-con .social-bio i {
    color: #fff;
    font-size: 16px;
}

.author-bio-con .social-bio a {
    width: 34px;
    height: 34px;
    display: inline-block;
    text-align: center;
    background: #000;
}

.author-bio-con .social-bio a:hover {
    color: #fff;
    background: #f2013f;
}



/* Post Comments */
.comments-area {
    float: left;
    width: 100%;
    position: relative;
}



.title-comment{
    float: left;
    width: 100%;
    margin-bottom: 29px;
}

.title-comment h4 {
    font-size: 30px;
    line-height: 20px;
    text-transform: none;
}

.write-comment-link {
    float: right;
    font-size: 16px;
    line-height: 32px;
    color: #000;
    font-weight: 700;
    margin-top: -8px;

}

.write-comment-link div.icon {
    width: 32px;
    height: 32px;
    display: block;
    border: 1px solid #000;
    line-height: 30px;
    text-align: center;
    float: left;
    margin-right: 10px;
}

.write-comment-link i{
    color: #000;
}



.comment-body {
    position: relative;
}

.comment-body a.reply{
    background: #000;
    color: #fff;
    display: inline-block;
    margin: 4px;
    cursor: pointer;
    text-transform: uppercase;
    position: absolute;
    top: 26px;
    right: 10px;
    padding: 3px 8px;

}

.comment-body a.reply:hover {
    text-decoration: none;
    background: #f2013f;
}


.comment-list {
    padding: 0;
    margin: 0;
    width: 100%;
    float: left;
}

.comment-list li {
    list-style: none;
    margin-bottom: 20px;
}
.comment-list li.parent {
    position: relative;
}

.comment-list li .comment-body {
    position: relative;
    border: 1px solid #ddd;
}

.comment-list li .comment-body .comment-meta {
    margin: 32px 0 0 28px;
}

.comment-list li .comment-body .comment-meta .comment-author img {
    margin-right: 23px;
    background: #ddd;
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 70px;
    height: 70px;
    float: left;
}

.comment-list li .comment-body .comment-meta .comment-author a {
    color: #000;
    font-size: 18px;
    font-weight: 700;

}

.comment-list li .comment-body .comment-meta .comment-metadata {
    font-size: 13px;
    line-height: 13px;
    color: #999999;
    font-weight: 700;
    margin-top: 9px;
}

.comment-list li .comment-body .comment-meta .comment-metadata a {
    color: #cccccc;
}

.comment-list li .comment-body .comment-content {
    padding: 20px;
    padding-top: 13px;
    margin-left: 100px;
    font-size: 14px;
    line-height: 24px;
}

.comment-list li .comment-body .comment-content p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}


.comment-list li .children {
    margin: 20px 0;
    padding: 0 0 0 50px;
    position: relative;
}
.comment-list li .children li {
    position: relative;
}





/* Comment Form */

.leave-comment {
    text-align: left;
    float: left;
    width: 100%;
}
.margin-top-50 {
    margin-top: 50px;
}

.leave-comment .main-title-2 {
    text-align: left;
}
.main-title-2 h2{

    font-size: 20px;
    position: relative;
    margin-bottom: 50px;
    text-align: left;
    text-transform: uppercase;
}

.comment-form {
    width: 100%;
    float: left;
    margin-top: 15px;
}

.comment-form-title h4 {
    font-size: 20px;
    color: #000;
    text-transform: none;
    margin-bottom: 14px;
}

.comment-form input {
    height: 44px;
    margin-bottom: 20px;
}

.comment-form textarea {
    min-height: 110px;
    margin-bottom: 20px;
}


/* Social Icon */
.get-connected .social-icons {
    width: 205px;
    height: 205px;
    float: left;
    background: #000;
    text-align: center;
    cursor: pointer;
    margin-right: 36px;
}

.get-connected .social-icons:last-child {
    margin-right: 0;
}

.get-connected .social-icons:hover {
    background: #f2013f;
}

.get-connected .social-icons i {
    color: #fff;
    font-size: 40px;
    line-height: 205px;

}


/* Map Section */
.map-section {
    padding: 0;
}

#map-canvas {
    height: 500px;
}

.our-address {
    background: #000;
    padding: 90px;
    margin-top: -100px;
    color: #fff;
}

.our-address h5 {
    color: #fff;
    margin-bottom: 10px;
}

.our-address p {
    margin-bottom: 0;
}

.get-connected {
    padding-top: 0;
}


/* Font Awesome icon */

.fa {
    color: #101010;
}
.show {
    overflow: hidden;
}
.show img {
    padding: 5px;
}

#sync1 .item{
    background: #0c83e7;
    padding: 80px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}
#chepakabra .item{
    background: #C9C9C9;
    padding: 10px 0px;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}
#chepakabra .item h1{
    font-size: 18px;
}
#chepakabra .synced .item{
    background: #0c83e7;
}

.header nav ul {
    float: right;
    line-height: 20px;
    margin-bottom: 0;
    margin-right: 40px;
}
.header nav ul li {
    float: left;
    margin-right: 30px;
    margin-bottom: 0;
    line-height: 90px;
}
.header nav ul li a {
    font-size: 18px;
}
.header nav ul li a:hover {
    text-decoration: none;
    color: #E41B21;
}
.contacts {
    margin: 80px 0 50px;
}
.contacts .center {
    text-align: center;
}
.nav-tabs>li.active>a {
    background: #E41C1F;
    color: #fff;
}
.nav-tabs>li.active>a:focus {
    background: #E41C1F;
    color: #fff;
}
.nav-tabs>li.active>a:hover {
    background: #E41C1F;
    color: #fff;
}
.nav-tabs>li>a {
    color: #fff;
}
.nav-tabs>li>a:focus {
    background: #E41C1F;
    color: #fff;
}
.nav-tabs>li>a:hover {
    background: #E41C1F;
    color: #fff;
}
.nav-tabs {
    margin-bottom: 30px;
}

/*Lord Of Sky*/
/* Why Choose Us */
.why-choose-us {
    padding: 0;
    position: relative;
    border-top: 1px solid #2952A1;

}

.why-choose-us .row {
    margin: 0;
}

.why-choose-us .left-col {
    position: absolute;
    top:0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('../images/koleso2.jpg') top center no-repeat;
    background-size: cover;
}

.lord-of-sky .right-col {
    width: 50%;
    float: left;
    padding: 128px 40px 131px 30px;
    background: #2952A1;
    box-sizing: border-box;
}

.lord-of-sky .right-col .content {
    width: 100%;
    float: right;
    max-width: 570px;
}

.lord-of-sky .right-col h3 {
    color: #fff;
    font-size:40px;
    margin-bottom: 42px;
}

.lord-of-sky .right-col p {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.lord-of-sky .right-col .btn {
    margin-top: 14px;
}
.lord-of-sky {
    padding: 0;
    position: relative;
    border-top: 1px solid #2952A1;

}

.lord-of-sky .row {
    margin: 0;
}

.lord-of-sky .left-col {
    position: absolute;
    top:0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/koleso4.jpg') top center no-repeat;
    background-size: cover;
}

.contacts-title {
    text-align: center;
    padding-bottom: 70px;
}
.contacts-section {
    padding-bottom: 0;
}
.address {
    padding: 0 40px;
}
.contact-form {
    padding: 0 20px;
}
.mobile-menu {
    display: none;
}
/*Mobile menu*/
#menu, .sub-menu {
    display: none;
    list-style: none;
}

/*Change toggle size by adjusting width & height*/
.tb-menu-toggle {
    border: 0;
    position: relative;
    background: transparent;
    cursor: pointer;
}

/*Change toggle color here*/
.tb-menu-toggle i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    -webkit-transition:all .2s;
    -moz-transition:all .2s;
    -o-transition:all .2s;
    transition:all .2s;
}
.tb-menu-toggle i:nth-child(2) {
    top: 40%;
}
.tb-menu-toggle i:nth-child(3) {
    top: 80%;
}

/* Style the active toggle here */
.tb-menu-toggle.tb-active-toggle i {  }

/*Animation of the toggle*/
.tb-menu-toggle.tb-animate-toggle i:first-child,
.tb-menu-toggle.tb-animate-toggle i:nth-child(2){
    top: 40%;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg);
}
.tb-menu-toggle.tb-animate-toggle i:nth-child(3){
    top: 40%;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
}
/*Mobile menu*/
@media (max-width: 1200px) {
    .main_menu {
        display: none;
    }
    .mobile-menu {
        display: block;
        padding: 35px 35px 0;
        float: right;
    }
    .tb-mobile-menu {
        float: right;
        text-align: right;
    }
    h3#menu-toggle {
        margin: 0 0 20px;
        float: right;
    }
}
@media (max-width: 479px) {
    /*.main_menu {
        display: none;
    }*/
    /*.why-choose-us .left-col {
        display: none;
    }*/
    .why-choose-us .left-col {
        width: 100%;
        background: url('../images/koleso2.jpg') center -250px no-repeat;
        position: relative;
        height: 300px;
    }
    .why-choose-us .right-col {
        width: 100%;
    }
    .nav-tabs>li {
        float: left;
        display: block;
        width: 100%;
    }
    .lord-of-sky .left-col {
        width: 100%;
        background: url('../images/lord-of-sky.jpg') center -165px no-repeat;
        position: relative;
        height: 300px;
    }
    .lord-of-sky .right-col {
        width: 100%;
    }
    .why-choose-us .right-col {
        padding: 45px 40px 131px 30px;
    }
    .lord-of-sky .right-col {
        padding: 45px 40px 131px 30px;
    }
    .contacts-section {
        padding-top: 50px;
    }
    .contacts-title {
        padding-bottom: 20px;
    }
    .form-title {
        padding: 20px;
    }
    /*.mobile-menu {
        display: block;
        padding: 35px 35px 0;
    }
    .tb-mobile-menu {
        float: right;
        text-align: right;
    }*/
}