/*
Theme Name:
Author: yaminncco

Colors:
	Body 		  : #868F9B
	Headers 	: #10161A
	Primary 	: #6195FF
	Dark      : #FCFCFF
	Grey 		  : #F4F4F4 #FAFAFA #EEE

Fonts: Montserrat Varela Round

Table OF Contents
------------------------------------
1 > General
2 > Logo
3 > Navigation
4 > Header
5 > About
6 > Portfolio
7 > Services
8 >  Why choose us
9 >  Numbers
10 > Pricing
11 > Testimonial
12 > Team
13 > Blog
14 > Blog post
15 > Blog sidebar
16 > Contact
17 > Footer
18 > Responsive
19 > Owl theme
20 > Back to top
21 > Preloader

------------------------------------*/

/*------------------------------------*\
	General
\*------------------------------------*/


/* -- typography -- */

body {
    font-family: 'Varela Round', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    color: #868F9B;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #10161A;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

a {
    color: #6195FF;
    text-decoration: none;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    opacity: 0.8;
    color: #6195FF;
}

.main-color {
    color: #6195FF;
}

.white-text {
    color: #FFF;
}

::-moz-selection {
    background-color: #6195FF;
    color: #FFF;
}

::selection {
    background-color: #bc902d ;
    color: #FFF;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/* -- section  -- */

.section {
    position: relative;
}

.md-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.sm-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
.payment_form{
    display: flex;
    justify-content: space-around;
    margin: 70px 70px;
}
.payment_form a {
    width: 47%;
    border: 2px solid #000;
}
.form_two_img{
    vertical-align: text-bottom;
    height: 93%;
    margin-top: 7px;
}
.contact-img{
    /* height: 534px; */
    width: 508px;
}



/* --  background section  -- */

.bg-grey {
    background-color: #FAFAFA;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.bg-dark {
    background-color: #1C1D21;
}


/* --  background image section  -- */

.bg-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.img-resp{
    background-image: url("../img/home-background.jpg");
}



.bg-img .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    /*background: #1C1D21;*/
}


/* --  section header  -- */

.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-header .title {
    text-transform: capitalize;
}

.title:after {
    content:"";
  	display:block;
  	height:4px;
  	width:40px;
  	background-color: #6195FF;
    margin-top: 20px;
}

.text-center .title:after {
    margin: 20px auto 0px;
}

/* --  Input  -- */

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="url"], input[type="tel"], textarea {
    height: 40px;
    width: 100%;
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 0px 10px;
    opacity: 0.5;
    -webkit-transition: 0.2s border-color, 0.2s opacity;
    transition: 0.2s border-color, 0.2s opacity;
}

textarea {
    padding: 10px 10px;
    min-height: 80px;
    resize: vertical;
    color: white;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="url"]:focus, input[type="tel"]:focus, textarea:focus {
    border-color: white;
    opacity: 1;
    outline: none !important;
}

/* --  Buttons  -- */

.main-btn, .white-btn, .outline-btn {
    display: inline-block;
    padding: 10px 35px;

    border: 2px solid transparent;

    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.main-btn {
    background: #bc902d;
    color: #FFF;
    margin-top: 2rem;
}

.white-btn {
    background: #FFF;
    color: #10161A !important;
}

.outline-btn {
    background: transparent;
    color: #6195FF !important;
    border-color: #6195FF;
}

.main-btn:hover, .white-btn:hover, .outline-btn:hover {
    opacity: 0.8;
}


/*------------------------------------*\
	Logo
\*------------------------------------*/

.navbar-brand {
    padding: 0;
    height: 70px;
}
.navbar-nav{
    margin: 5px !important;
}
.navbar-brand .logo, .navbar-brand .logo-alt {
    max-height: 70px;
    display: block;
    margin-left: 1rem;
}

#nav:not(.nav-transparent):not(.fixed-nav) .navbar-brand .logo-alt {
	display: none;
}

#nav.nav-transparent:not(.fixed-nav) .navbar-brand .logo {
	display: none;
}

#nav.fixed-nav .navbar-brand .logo-alt {
    display: none;
}

@media only screen and (max-width: 767px) {
    .navbar-brand {
        height: 55px;
    }
    .navbar-nav{
        margin: 0 !important;
    }
    #nav.nav-transparent .navbar-brand .logo-alt {
        display: none !important;
    }
    #nav.nav-transparent .navbar-brand .logo {
        display: block !important;
    }
    #nav.navbar {
        position: relative !important;
        left: inherit !important;
    }
    #nav.fixed-nav {
        position: fixed !important;
        left: 0 !important;
    }
    #nav.nav-transparent {
        background: #282627 !important;
    }
    .navbar-brand .logo, .navbar-brand .logo-alt {
        max-height: 45px;
        display: block;
        margin: 0.5rem 0 0 1rem;
    }
    .owl-theme .owl-nav [class*='owl-'] {
        width: 20px !important;
        height: 30px !important;
        border-radius:2px !important;
        line-height: 30px !important;
    }
}


/*------------------------------------*\
	Navigation
\*------------------------------------*/

#nav {
    padding: 10px 0px;
    background: #FFF;
    -webkit-transition: 0.2s padding;
    transition: 0.2s padding;
    z-index: 999;
}

#nav.navbar {
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
    position: absolute;
    left: 13%;
}

#nav.fixed-nav {
    position: fixed ;
    left: 0;
    right: 0;
    padding: 0px 0px;
    background-color: #282627 !important;
   /* border-bottom: 1px solid #EEE;*/
}

#nav.nav-transparent {
    background: transparent;
}


/* -- default nav -- */

@media only screen and (min-width: 768px) {
    .main-nav li {
        padding: 0px 15px;
    }
    .main-nav li a {
        font-size: 14px;
        -webkit-transition: 0.2s color;
        transition: 0.2s color;
    }
    .main-nav>li>a {
        color: #fff;
        padding: 20px 0px;
    }
    #nav.nav-transparent:not(.fixed-nav) .main-nav>li>a {
        color: #fff;
    }
    .main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
        background: transparent;
        color: #bc902d !important;
    }
    .main-nav>li>a:after {
        content: "";
        display: block;
        background-color: #fff;
        height: 2px;
        width: 0%;
        -webkit-transition: 0.2s width;
        transition: 0.2s width;
    }
    .main-nav>li>a:hover:after, .main-nav>li.active>a:after {
        width: 100%;
    }
    /* dropdown */
    .has-dropdown {
        position: relative;
    }
    .has-dropdown>a:before {
        font-family: 'FontAwesome';
        content: "\f054";
        font-size: 6px;
        margin-left: 6px;
        float: right;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: 0.2s transform;
        transition: 0.2s transform;
    }
    .dropdown {
        position: absolute;
        right: -50%;
        top: 0;
        background-color: #6195FF;
        width: 200px;
        -webkit-box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        -webkit-transform: translateY(15px) translateX(50%);
        -ms-transform: translateY(15px) translateX(50%);
        transform: translateY(15px) translateX(50%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>.has-dropdown>.dropdown {
        top: 100%;
        right: 50%;
    }
    .main-nav>.has-dropdown>.dropdown .dropdown.dropdown-left {
        right: 150%;
    }
    .dropdown li a {
        display: block;
        color: #FFF;
        border-top: 1px solid rgba(250, 250, 250, 0.1);
        padding: 10px 0px;
    }
    .dropdown li:nth-child(1) a {
        border-top: none;
    }
    .has-dropdown:hover>.dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px) translateX(50%);
        -ms-transform: translateY(0px) translateX(50%);
        transform: translateY(0px) translateX(50%);
    }
    .has-dropdown:hover>a:before {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .nav-collapse {
        display: none;
    }
}


/* -- mobile nav -- */

@media only screen and (max-width: 767px) {
    #nav {
        padding: 0px 0px;
    }
    #nav.nav-transparent {
        background: transparent;
    }
    .main-nav {
        position: fixed;
        right: 0;
        height: calc(100vh - 80px);
        -webkit-box-shadow: 0px 80px 0px 0px #1C1D21;
        box-shadow: 0px 80px 0px 0px #1C1D21;
        max-width: 250px;
        width: 0%;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        margin: 0;
        overflow-y: auto;
        background: #1C1D21;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    #nav.open .main-nav {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }
    .main-nav li {
        border-top: 1px solid rgba(250, 250, 250, 0.1);
    }
    .main-nav li a {
        display: block;
        color: #FFF;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>li.active {
        border-left: 6px solid #bc902d;
        background-color: #bc902d !important;
    }
    .main-nav li a:hover, .main-nav li a:focus {
        background-color: #bc902d;
        color: #FFF;
        opacity: 1;
    }
    .has-dropdown>a:after {
        content: "\f054";
        font-family: 'FontAwesome';
        float: right;
        -webkit-transition: 0.2s -webkit-transform;
        transition: 0.2s -webkit-transform;
        transition: 0.2s transform;
        transition: 0.2s transform, 0.2s -webkit-transform;
    }
    .dropdown {
        opacity: 0;
        visibility: hidden;
        height: 0;
        background: rgba(250, 250, 250, 0.1);
    }
    .dropdown li a {
        padding: 6px 10px;
    }
    .has-dropdown.open-drop>a:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .has-dropdown.open-drop>.dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
}


/* -- nav btn collapse -- */

.nav-collapse {
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    margin-top: 7px;
    margin-right: 5px;
    cursor: pointer;
    z-index: 99999;
}

.nav-collapse span {
    display: block;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
}

.nav-collapse span:before, .nav-collapse span:after {
    content: "";
    display: block;
}

.nav-collapse span, .nav-collapse span:before, .nav-collapse span:after {
    height: 4px;
    background: #fff;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.nav-collapse span:before {
    -webkit-transform: translate(0%, 10px);
    -ms-transform: translate(0%, 10px);
    transform: translate(0%, 10px);
}

.nav-collapse span:after {
    -webkit-transform: translate(0%, -14px);
    -ms-transform: translate(0%, -14px);
    transform: translate(0%, -14px);
}

#nav.open .nav-collapse span {
    background: transparent;
}

#nav.open .nav-collapse span:before {
    -webkit-transform: translateY(0px) rotate(-135deg);
    -ms-transform: translateY(0px) rotate(-135deg);
    transform: translateY(0px) rotate(-135deg);
}

#nav.open .nav-collapse span:after {
    -webkit-transform: translateY(-4px) rotate(135deg);
    -ms-transform: translateY(-4px) rotate(135deg);
    transform: translateY(-4px) rotate(135deg);
}


/*------------------------------------*\
	Header
\*------------------------------------*/

header {
    position: relative;
}

#home {
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 0;
}
.scrollDownWrap {
    font-size: 12px;
    color: #fff;
    position: absolute;
    bottom: 10px;
    margin: auto;
    display: block;
    left: 0;
    right: 0;
    text-align: center;
    width: 100px;
    z-index: 9;
}
.scrollDown {
    width: 20px;
    height: 50px;
    position: relative;
    display: block;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    margin: 0 auto 6px auto;
}
@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
#home .home-wrapper {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.home-content h1 {
  text-transform: uppercase;
}
.home-content button {
  margin-top: 20px;
}

.header-wrapper h2 {
    display: inline-block;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb {
    float: right;
    background: transparent;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb .breadcrumb-item.active {
    color: #868F9B;
}

.breadcrumb>li+li:before {
    color: #868F9B;
}


/*------------------------------------*\
	About
\*------------------------------------*/

.about {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #EEE;
    margin: 15px 0px;
}

.about i {
    font-size: 36px;
    color: #6195FF;
    margin-bottom: 20px;
}

.about:after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    z-index: -1;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
}

/*.about:hover:after {
    width: 100%;
}*/

.about h3 {
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

/*.about:hover h3 {
    color: #fff;
}*/


/*------------------------------------*\
	Portfolio
\*------------------------------------*/

.work {
    position: relative;
    padding: 20px;
}

.work>img {
  width: 100%;
}

.work .overlay {
    background: #b98d2cd9 !important;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transition: 0.2s opacity !important;
    transition: 0.2s opacity;
    -webkit-transition-delay: 0.2s !important;
    transition-delay: 0.2s;
}

.work:hover .overlay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0.8;
}

.work .work-content {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 50%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.work .work-content h3 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    color: #FFF;
    margin-bottom: 10px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.work:hover .work-content h3 {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.work:hover .project-logo {
    translateY(0%);
    display: none;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.work .work-content span {
    display: block;
    text-transform: uppercase;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    color: #6195FF;
    margin-bottom: 5px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work:hover .work-content span {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.work .work-link {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.work .work-link a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #FFF;
    color: #bc902d;
    line-height: 40px;
    text-align: center;
}

.work:hover .work-link {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}


/*------------------------------------*\
	Services
\*------------------------------------*/

.service {
    position: relative;
    padding: 40px 20px 40px 70px;
    margin: 15px 0px;
    border: 1px solid #EEE;
}

.service i {
    position: absolute;
    left: 20px;
    text-align: center;
    font-size: 32px;
    color: #6195FF;
    border-radius: 50%;
}

.service:after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    z-index: -1;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
}

.service:hover:after {
    width: 100%;
}

.service h3 {
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

.service:hover h3 {
    color: #fff;
}

/*------------------------------------*\
	Why choose us
\*------------------------------------*/

.feature {
    margin: 15px 0px;
}
.feature i {
    float: left;
    padding: 5px;
    border-radius: 50%;
    color: #bc902d;
    border: 1px solid #bc902d;
    margin-right: 5px;
}

/*------------------------------------*\
	Numbers
\*------------------------------------*/

.number {
    text-align: center;
    margin: 15px 0px;
}

.number i {
    color: #6195FF;
    font-size: 36px;
    margin-bottom: 20px;
}

.number h3 {
    font-size: 36px;
    margin-bottom: 10px;
}


/*------------------------------------*\
	Pricing
\*------------------------------------*/

.pricing {
    position: relative;
    text-align: center;
    border: 1px solid #EEE;
    background-color: #FFF;
    z-index: 11;
    margin: 15px 0px;
}

.pricing::after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0%;
    z-index: -1;
    -webkit-transition: 0.2s height;
    transition: 0.2s height;
}

.pricing:hover:after {
    height: 100%;
}

.pricing .price-head {
    position: relative;
    margin-bottom: 20px;
}

.pricing .price-title {
    display: block;
    padding: 40px 0px 20px;
    text-transform: uppercase;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.pricing:hover .price-title {
    color: #6195FF;
}

.pricing .price {
    position: relative;
    width: 140px;
    height: 140px;
    line-height: 140px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #6195FF;
}

.pricing .price h3 {
  font-size: 42px;
  margin: 0px;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  position: absolute;
  left: 0;
  right: 0;
}

.pricing:hover .price h3 {
    color: #fff;
}

.pricing .duration {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #10161A;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.pricing:hover .duration {
    color: #fff;
}

.pricing .price-btn {
    padding-top: 20px;
    padding-bottom: 40px;
}

/*------------------------------------*\
	Testimonial
\*------------------------------------*/

.testimonial {
    margin: 15px 0px;
}

.testimonial-meta {
    position: relative;
    padding-left: 90px;
    height: 70px;
    margin-bottom: 20px;
    padding-top: 10px;
}

.testimonial img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
}

.testimonial h3 {
    margin-bottom: 5px;
}

.testimonial span {
    font-size: 14px;
    color: #6195FF;
    text-transform: uppercase;
}


/*------------------------------------*\
	Team
\*------------------------------------*/

.team {
    position: relative;
    background-color: #F4F4F4;
    padding: 40px 20px;
    margin: 15px 0px;
}

.team::after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0%;
    z-index: 1;
    -webkit-transition: 0.2s height;
    transition: 0.2s height;
}

.team:hover:after {
    height: 100%;
}

.team-img {
    position: relative;
    margin-bottom: 20px;
    z-index: 11;
}

.team-img>img {
  width: 100%;
}

.team .overlay {
    background: #1C1D21;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.team:hover .overlay {
    opacity: 0.8;
}

.team .team-content {
    text-align: center;
    position: relative;
    z-index: 11;
}

.team .team-content h3 {
    margin-bottom: 10px;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.team .team-content span {
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.team:hover .team-content h3 {
    color: #FFF;
}

.team:hover .team-content span {
    color: #6195FF;
}

.team .team-social {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.team .team-social a {
    display: block;
    line-height: 50px;
    width: 50px;
    text-align: center;
    background-color: #6195FF;
    color: #FFF;
}

.team:hover .team-social {
    opacity: 1;
}


/*------------------------------------*\
	Blog
\*------------------------------------*/

.blog {
    background-color: #FFF;
    margin: 15px 0px;
}

.blog .blog-content {
    padding: 20px 20px 40px;
}

.blog .blog-meta {
    margin-bottom: 20px;
}

.blog .blog-meta li {
    display: inline-block;
    font-size: 14px;
    color: #10161A;
    margin-right: 10px;
}

.blog .blog-meta li i {
    color: #6195FF;
    margin-right: 5px;
}

/*------------------------------------*\
	Blog post
\*------------------------------------*/

#main .blog .blog-content {
  padding: 20px 0px 0px;
}

#main .blog {
  margin-top: 0px;
}

/* -- blog tags -- */

.blog-tags {
    margin: 40px 0px;
}

.blog-tags h5 {
    margin-bottom: 0;
    display: inline-block;
}

.blog-tags a {
    display: inline-block;
    padding: 6px 13px;
    font-size: 14px;
    margin: 2px 0px;
    background: #F4F4F4;
    color: #10161A;
}

.blog-tags a:hover {
  color: #FFF;
  background-color: #6195FF;
}

.blog-tags a i {
    margin-right: 3px;
    color: #6195FF;
}

.blog-tags a:hover i {
  color: #FFF;
}


/* -- blog author -- */

.blog-author {
    margin: 40px 0px;
}

.blog-author .media .media-left {
    padding-right: 20px;
}

.blog-author .media {
    padding: 20px;
    border: 1px solid #EEE;
}

.blog-author .media .media-heading {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE;
}

.blog-author .media .media-heading h3 {
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
}

.blog-author .media .media-heading .author-social {
  float: right;
}

.blog-author .author-social a {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 3px;
    margin-left: 5px;
    color: #FFF;
    background-color: #6195FF;
}

/* -- blog comments -- */

.blog-comments {
    margin: 40px 0px;
}

.blog-comments .media {
    padding: 20px;
    background-color: #FFF;
    border-top: 1px solid #EEE;
    border-bottom: 0px;
    border-right: 1px solid #EEE;
    border-left: 1px solid #EEE;
    margin-top: 0px;
}

.blog-comments .media:first-child {
    border-bottom: 0px;
}

.blog-comments .media:last-child {
    border-bottom: 1px solid #EEE;
}

.blog-comments .media .media-left {
  padding-right: 20px;
}

.blog-comments .media .media-body .media-heading {
    text-transform: uppercase;
    margin-bottom:10px;
}

.blog-comments .media .media-body .media-heading .time {
    font-size: 12px;
    margin-left: 20px;
    font-weight: 400;
    color: #868F9B;
}

.blog-comments .media .media-body .media-heading .reply {
    float: right;
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
}

.blog-comments .media.author {
    background-color: #F4F4F4;
    border-color: #6195FF;
    border-bottom: 1px solid #6195FF;
}
.blog-comments .media.author>.media-body>.media-heading {
    color: #6195FF;
}

.blog-comments .media.author + .media {
    border-top: 0px;
}

/* blog reply form */

.reply-form {
    margin: 40px 0px;
}

.reply-form form .input, .reply-form form .input , .reply-form form textarea {
	margin-bottom:20px;
}

.reply-form form .input, .reply-form form .input {
    width: calc(50% - 10px);
    display: inline-block;
}

.reply-form form .input:nth-child(2) {
    margin-left: 15px;
}


/*------------------------------------*\
	Blog sidebar
\*------------------------------------*/

#aside .widget {
    margin-bottom: 40px;
}

.widget h3 {
  text-transform: uppercase;
}

/* -- search sidebar -- */

#aside .widget-search {
    position: relative;
}

#aside .widget-search .search-input {
    padding-right: 50px;
}

#aside .widget-search .search-btn {
    position: absolute;
    right: 0px;
	  bottom: 0px;
    width: 40px;
    height: 40px;
    border: none;
    line-height: 40px;
    background-color: transparent;
    color: #6195FF;
}

/* -- category sidebar -- */

.widget-category a {
    display: block;
    font-size: 14px;
    color: #354052;
    border-bottom: 1px solid #EEE;
    padding: 5px;
}

.widget-category a:nth-child(1) {
  border-top: 1px solid #EEE;
}

.widget-category a span {
    float: right;
    color: #6195FF;
}

.widget-category a:hover {
    color: #6195FF;
}

/* -- tags sidebar -- */

.widget-tags a {
  display: inline-block;
  padding: 6px 13px;
  font-size: 14px;
  margin: 2px 0px;
  background: #F4F4F4;
  color: #10161A;
}

.widget-tags a:hover {
  color: #FFF;
  background-color: #6195FF;
}

/* -- posts sidebar -- */

.widget-post {
    min-height: 70px;
    margin-bottom: 25px;
}

.widget-post img {
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}

.widget-post a {
    display: block;
    color: #10161A;
}

.widget-post a:hover {
    color: #6195FF;
}

.widget-post .blog-meta {
    display: inline-block;
}

.widget-post .blog-meta li {
    display: inline-block;
    margin-right: 5px;
    color: #6195FF;
    font-size: 12px;
}

.widget-post li i {
    color: #6195FF;
    margin-right: 5px;
}



/*------------------------------------*\
	Contact
\*------------------------------------*/

.contact {
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
    width: 100%;
    margin:0px;
    text-align: center;
}

.contact i {
    font-size: 36px;
    color: #6195FF;
    margin-bottom: 20px;
}

.contact-form {
    text-align: center;
    margin-top: 40px;
}

.contact-form .input {
    margin-bottom: 10px;
}


.contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
    width: calc(50% - 10px);
}

.contact-form .input:nth-child(2) {
    margin-left: 15px;
}
input[type='number'] {
    -moz-appearance:textfield;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/*------------------------------------*\
	Footer
\*------------------------------------*/

#footer {
    position: relative;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo>a>img {
    max-height: 80px;
}

.footer-follow {
    text-align: center;
    margin-bottom: 20px;
}

.footer-follow li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 13px;
}

.footer-follow li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  background-color: #6195FF;
  color:#FFF;
}

.footer-copyright p {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}


/*------------------------------------*\
	Responsive
\*------------------------------------*/


@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .section-header h2.title {
  		font-size:31.5px;
	}

  .main-btn , .default-btn , .outline-btn , .white-btn  {
  		padding: 8px 22px;
  		font-size:14px;
	}

  .home-content h1 {
		font-size:36px;
	}

  .header-wrapper h2 {
      margin-bottom: 20px;
      text-align: center;
      display: block;
  }

  .header-wrapper .breadcrumb {
      float: none;
      text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  #portfolio [class*='col-xs'] {
		  width:100%;
	}

  #numbers [class*='col-xs'] {
		  width:100%;
	}

  .contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
      width: 100%;
  }
  .contact-form .input:nth-child(2) {
      margin-left: 0px;
  }

  .reply-form form .input, .reply-form form .input {
      width: 100%;
  }
  .reply-form form .input:nth-child(2) {
      margin-left: 0px;
  }



  .blog-author .media .media-left {
      display: block;
      padding-right: 0;
      margin-bottom: 20px;
  }
  .blog-author .media {
      text-align: center;
  }
  .blog-author .media .media-heading .author-social {
      margin-top: 10px;
      float: none;
  }
  .blog-author .media .media-left img {
      margin: auto;
  }

  .blog-comments .media .media {
      margin:0px -15px;
  }
}



/*------------------------------------*\
	Owl theme
\*------------------------------------*/

/* -- dots -- */
.home .owl-dots {
    position: absolute;
    bottom: 0;
    display: none;
    left: 20px;
}
.enclave .owl-dots {
    position: absolute;
    bottom: 0;
    display: inline;
    left: 45%;
}
.place .owl-dots, .villas .owl-dots {
    position: absolute;
    bottom: 0;
    display: none;
    left: 45%;
}
.owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
    border: 1px solid white;
    background: transparent;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #FFF;
}
.owl-theme .owl-dots .owl-dot.active span {
	  background: #bc902d;
      border: 1px solid #bc902d;
	  width:10px;
}

/* -- nav -- */

.owl-theme .owl-nav {
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.owl-theme:hover .owl-nav {
    opacity: 1;
}

.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #bc902d;
    color: #FFF;
  	padding: 0px;
  	width: 40px;
  	height: 40px;
  	border-radius:3px;
  	line-height: 40px;
  	margin: 0;
}

.owl-theme .owl-prev {
    left: 0px;

}

.owl-theme .owl-next {
    right: 0px;

}

.owl-theme .owl-nav [class*='owl-']:hover {
    opacity: 0.9;
    background: #bc902d;
}


/*------------------------------------*\
	Back to top
\*------------------------------------*/

#back-to-top {
  	display:none;
  	position: fixed;
  	bottom: 60px;
  	right: 20px;
  	width: 40px;
  	height: 40px;
  	line-height: 40px;
  	text-align: center;
  	background: #bc902d;
  	border-radius:3px;
  	color: #FFF;
  	z-index: 9999;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  	cursor: pointer;
}

#back-to-top:after {
    content: "\f106";
    font-family: 'FontAwesome';
}

#back-to-top:hover {
    opacity: 0.8;
}

/*------------------------------------*\
	Preloader
\*------------------------------------*/


#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    z-index: 99999;
}

.preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.preloader span {
    display: inline-block;
    background-color: #bc902d;
    width: 30px;
    height: 30px;
    -webkit-animation: 1s preload ease-in-out infinite;
            animation: preload 1s ease-in-out infinite;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    border-radius:10%;
}

.preloader span:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.preloader span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.preloader span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
}

.preloader span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

@-webkit-keyframes preload {
	0% {
	   -webkit-transform:scale(0);
	           transform:scale(0);
	}
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}

@keyframes preload {
	0% {
	   -webkit-transform:scale(0);
	           transform:scale(0);
	}
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}


.form-control {
    background-color: transparent !important;
    border-color: white;
    opacity: 1;
    outline: none !important;
    border-radius: 3px;
    height: 40px;
    padding: 6px 8px;
    color: white;
}
.form-control:focus{
    outline: none !important;
    border-color: white !important;

}
.form > .error{
    color: #bc902d;
    font-size: 1.25rem;
}
.success-error-popup{
    margin-top: 2rem;
}

/* Home Page CSSSS */
.nav-tabs a
{
    color:#fff ;
}
.li-width{
    width: 33.3%;
}
.tab-content .media-heading
{
    margin-top: 1.5em;
    color: #bc902d;
}

.tab-content .media-body
{
    padding-top: 0.5em;
    color: #000000;
    font-size: 22px;
    line-height: 44px;
}

.nav-tabs {
    border-bottom: 2px solid #bc902d !important;
}
.nav-tabs > li > a
{
    font-size: 18px;
}
.nav-tabs > li > a,.nav-tabs > li > a:hover,.nav-tabs > li > a:focus, .nav-tabs > li.active > a, .nav-tabs > li.active >a:focus, .nav-tabs >li.active > a:hover {
    border:none !important;
    background: transparent;
    color: #0b0b0b;
}
.nav-tabs > li > .all_link {

    color: #fff !important;
}

.nav-tabs > li.active > .all_link {
    background: transparent;
    color: #0b0b0b !important;
}
.nav-tabs > li.active > a, .nav-tabs > li.active >a:focus, .nav-tabs >li.active > a:hover {

    color: #0b0b0b;
    cursor: default;
   border: none !important;
    background: #fff !important;
    border-bottom: 4px solid #bc902d !important;
}
.black-area
{
    background-color: #2d2a2c;
    /*color: #fff;*/
}
#slider-container{
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
}
#home-about-us{
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 3rem 0 3rem 0;
}
.home-about-heading{
    font-size: 7rem;
    color: #282627;
}
#home-featured-projects{
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 3rem 0 3rem 0;
}
.home-featured-projects-heading{
    font-weight: 900;
    font-size: 7rem;
    color: #fff;
}
/*.main-heading-white
{
    font-weight: 900;
    font-size: 7rem;
    color: #fff;
}

.main-heading-black
{
    font-weight: 900;
    font-size: 8rem;
    zoom: 1;
    color: #000;
}*/

.featured-details
{
    color:#bc902d;
    font-size: 18px;
    padding-left: 30px;
    font-weight: 500;
    zoom: 1;
}
.main-intro-details
{
    color:#bc902d;
    font-size: 18px;
    padding-left: 1em;
    font-weight: 600;
    zoom: 1;
}
#home-why-veritas{
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 3rem 0 3rem 0;
}
.home-why-veritas-heading{
    font-weight: 900;
    font-size: 7rem;
    color: #282627;
}
.about
{
    border: none !important;
}

.about h3
{
    font-size: 24px;
    color:#bc902d;
    font-weight: 700;
}

#home-news-updates {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 3rem 0 3rem 0;
}
.home-news-heading{
    font-weight: 900;
    font-size: 7rem;
    color: #fff;
}
.news-date
{
    color: #cccccc;
    font-weight: 600;
    font-size: 16px;
    margin-top: 30px;
}

.news-heading
{
    color: #000000;
    font-weight: 900;
    font-size:22px;
    margin-top: 30px;
}

.news-heading .news-city
{
    color: #1c1a1b;
    font-size:20px;
    font-weight: 100;
}

.news-details
{
    color: #868F9B;
    font-size:16px;
}

.details-white
{
    color:#fff;
    font-size: 20px;
    padding-left: 3em;
    font-weight: 600;
    zoom: 1;
}
#home-start-project{
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    padding: 3rem 0 3rem 0;
}
.home-start-project-heading{
    font-weight: 900;
    font-size: 6rem;
    color: #fff;
}
#home-start-project .btn
{
    margin-top: 3em;
    border-radius: 0px !important;
    height: 60px;
    font-size: 2rem;
    font-weight: 700;
    outline: none;
}

.fa-icon
{
    font-size: 1.2em;
    color:#bc902d;
}

#contact .contact-heading
{
    color:#fff;
    font-size: 26px;
    font-weight: 700;
}

#contact
{
    color: #cccccc;
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;

}


/*   End Home Page */

/*About page Css */

/*#about-page{
    padding: 0rem 2rem 0rem 2rem;
    background-color: #0e0e0e;
}*/
.p-1{
    padding: 1rem;
}
.p-2{
    padding: 2rem;
}
.p-5{
    padding: 5rem;
}
.p-l-3{
    padding-left: 3rem;
}
.p-t-5{
    padding-top: 5rem;
}
.m-b-1{
    margin-bottom: 1.5rem;
}
.m-b-2{
    margin-bottom: 2rem;
}
.m-b-4{
    margin-bottom: 4rem;
}
.m-b-5{
    margin-bottom: 5rem;
}
.m-t-2{
    margin-top: 2rem;
}
.m-t-3{
    margin-top: 3rem;
}
.m-t-4{
    margin-top: 4rem;
}
.m-t-5{
    margin-top: 5rem;
}
.text-white{
    color: white;
}
.constant-img{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/**********/

.who-we-are{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    margin: 0 !important;
    padding: 12rem 0 5rem 0;
    background-color: #282627;
}
.who-we-are-heading{
    font-size: 8rem;
    color: white;
}
.left-container{
    padding-bottom: 3rem;
    padding-left: 5rem;
}
.leading-developer{
    line-height: 1.5;
    font-size: 3.5rem;
    color: #bb902d;
}
.leading-developer-para{
    color: white;
    list-style-type: square;
    line-height: 2;
    margin-left: 35px;
}
.number-style{
    color: #bb902d;
    font-size: 1.5em;
}
.text-style{
    color: white;
    line-height: 2;
}
.inline{
    display: inline;
}
.arrow-img{
    content: url("../img/arrow.jpg");
}
.arrow-img:after{
    content: url("../img/arrow.jpg");
}
.dark-bg-boxshadow{
    -webkit-box-shadow: 0px -1px 25px rgba(0,0,0,0.5), 0px 1px 25px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px -1px 25px rgba(0,0,0,0.5), 0px 1px 25px rgba(0,0,0,0.7);
    box-shadow: 0px -1px 25px rgba(51, 50, 50, 0.5), 0px 1px 25px rgba(0, 0, 0, 0.7);
}

/*************/

.key-success-factors{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    background-color: white;
    margin: 0 !important;
}
.key-success-factors-section{
    padding: 5rem 0 5rem 0;
}
.issues-faced-section{
    background-image: url('../img/bg_left.jpg');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 50% 100%;
    padding: 5rem 0 5rem 0;
}
.issues-faced-heading, .solutions-provided-heading{
    color: #bc902d;
    font-size: 3rem
}
.issues-faced-ul, .solutions-provided-ul{
    list-style-type: square;
    padding-left: 4rem;
}
.solutions-provided-section{
    background-image: url('../img/bg_right.jpg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 50% 100%;
    padding: 5rem 0 8rem 0;
}
.key-success-factors-heading{
    margin-bottom: 0;
    color: #282627;
    font-size: 8rem;
}
.key-success-factors-small-text{
    padding-left: 3rem;
}
.key-success-factors-text{
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
}
.sub-text{
    color: #bb902d;
    font-size: 3rem;
}
.sub-text-discription{

}
.highlight-client{
    background-color: #bc902d;
    color: white;
    font-size: 13px;
}


/*************/

.our-team{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    margin: 0 !important;
    padding: 8rem 0rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.our-team-margin-bottom{
    margin-bottom: 5rem;
}
.our-team-heading{
    margin-bottom: 0;
    color: white;
    font-size: 8rem;
}
.partners-container, .leadership-container{
    margin-bottom: 4rem;
    padding-left: 30px;
}
.partners, .leadership{
    padding: 1rem 2rem 1rem 2rem;
    background-color: #47485a;
    color: #bb902d;
    font-size: 4rem;
}
.team-person-name{
    font-size: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: white;
}
.team-person-details{
    color: white;
}

/*************/

.strategic-partners{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    background-color: white;
    margin: 0 !important;
    padding: 8rem 0rem;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
.strategic-partners-heading{
    margin-bottom: 0;
    color: #282627;
    font-size: 8rem;
}
.partner-company-name{
    font-size: 3rem;
    color: #bb902d;
}
.partner-company-details{
    line-height: 2;
    color: #504d4d;
    font-size: 1.5rem;
    list-style-type: square;
}

/*************/

.projects-completed{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    margin: 0 !important;
    padding: 8rem 0rem;
    background-color: white;
}
.projects-completed-heading{
    color: #282627;
    font-size: 5rem;
}
.category-container{
    margin-bottom: 4rem;
    padding-left: 30px;
}
.category{
    padding: 1rem 2rem 1rem 2rem;
    background-color: #47485a;
    color: white;
    font-size: 4rem;
}
.location-name{
    color: #bc902d;
    padding-left: 15px;
}

/*************/

.capabilities{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    background-color: white;
    margin: 0 !important;
    padding: 8rem 0rem;
}
.capabilities-heading{
    margin-bottom: 0;
    color: #282627;
    font-size: 8rem;
}
.capabilities-small-text{
    padding-left: 3rem;
}
.residential-buildings{
    font-size: 4rem;
    color: #bb902d;
    text-align: left;
}
.residential-buildings-para{
    line-height: 2.5;
    color: black;
    font-size: 1.5rem;
    text-align: left;
}
.residential-img-style{
    padding: 15rem 2rem 0rem 4rem;
}
.smart-buildings{
    font-size: 4rem;
    color: #bb902d;
    text-align: right;
}
.smart-buildings-para{
    line-height: 2.5;
    color: black;
    font-size: 1.5rem;
    text-align: right;
}
.smart-img-style{
    padding: 15rem 4rem 0rem 2rem;
}
.healthcare-buildings{
    font-size: 4rem;
    color: #bb902d;
    text-align: left;
}
.healthcare-buildings-para{
    line-height: 2.5;
    color: black;
    font-size: 1.5rem;
    text-align: left;
}
.healthcare-img-style{
    padding: 10rem 2rem 0rem 4rem;
}

/*************/

.contact-section{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    background-color: #282627;
    margin: 0 !important;
    padding: 4rem 0rem 10rem 0rem;
}
.get-in-touch,.contact-heading{
    color:#fff;
    font-size: 3rem;
    font-weight: 700;
}
.contact-details{
    color: white;
    font-weight: 300;
}
.icon-font-size{
    font-size: 1.5rem;
}
.contact-list
{
    margin-top: 2em;
}
.contact-footer-container{
    width: 100%;
    position: absolute;
    right: 0
}

/*************/

.all-projects{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    background-color: #282627;
    margin: 0 !important;
    padding: 12rem 0rem 5rem 0rem;
}
.our-projects{
    font-size: 7rem;
    color: white;
}
.place-logo, .villas-logo{
    position: absolute;
    width: 80px !important;
    left: 25px;
    top: 20px;
}
.enclave-logo{
    position: absolute;
    width: 100px !important;
    left: 25px;
    top: 20px;
}
.enclave-bg-position{
    background-position: top center;
}
.enclave-img-overlay-text{
    position: absolute;
    right: 20px;
    top: 95vh;
}
/*End About page*/

/*Industry Overview page*/
.industryoverview, .newsandupdates{
    font-size: 7rem;
}
.industry-top-container{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    background-color: white;
    margin: 0 !important;
    padding: 8rem 0rem;
}
.recent-trends-heading{
    font-size: 4rem;
    color: #282627;
    text-align: center;
    margin-bottom: 4rem;
}
.heading-odd{
    font-size: 16rem;
    color: #bc902d;
    text-align: right;
}
.para-odd{
    margin-top: 5rem;
    font-size: 1.5rem;
    text-align: left;
}
.heading-even{
    font-size: 16rem;
    color: #bc902d;
    text-align: left;
}
.para-even{
    margin-top: 5rem;
    font-size: 1.5rem;
    text-align: right;
}
.industry-bottom-container{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    background-color: white;
    margin: 0 !important;
    padding: 2rem 0rem 4rem 0rem ;
}
.global-construction-heading{
    font-size: 4rem;
    color: #282627;
    text-align: center;
    margin-bottom: 8rem
}
.four-cols-heading-style{
    font-size: 2.5rem;
    color: #bb902d;
}
.see-all-opportunities{
    font-size: 2rem;
    text-align: center;
    padding-top: 5rem;
}
.see-all-opportunities:hover{
    text-decoration: underline;
}
.see-all-opportunities > a {
    text-decoration: none;
    color: #282627;
}
/*End Industry Overview page*/

/* Investment Oppotortunities page*/
/*.veritas-place{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    margin: 0 !important;
    padding: 8rem 0 5rem 0;
    background-color: #282627;
}*/
/*.veritas-place-heading{
    font-size: 8rem;
    color: white;
}*/
.veritas-place, .veritas-villas{
    width: 100%;
    overflow-x:hidden;
    overflow-y: hidden;
    margin: 0 !important;
    padding: 5rem 0 0 0;
    background-color: white;
}
.veritas-place-heading, .veritas-villas-heading{
    font-size: 6rem;
    color: #282627;
}
.sqr-ft{
    background-color: #282627;
    color: white;
    font-weight: 300;
    border-radius: 5px;
    padding : 3px 5px;
}
.project-description p::before  {
    content: '✔ ';
    color: #bc902d;
}
.project-description ul {
    list-style-type: none;
    margin-bottom: 1rem;
}
.project-description > ul > li::before {
    content: '■ ';
    color: #bc902d;
    margin-left: 4rem;
}
.project-description > ol > li{
    list-style-type: decimal;
    margin-left: 6rem;
}


.veritas-place-ul{
    list-style-type: none;
}
.veritas-place-ul > li::before{
    content: '■';
    color: #bc902d;
    margin-left: 4rem;
}
.residencies-text-padding-top{
    padding-top: 15%;
}
.floorplan-text-padding-top{
    padding-top: 10%;
}
.floorplan-ul-style{
    list-style-type: square;
    margin-left: 20px;
}
.residencies-heading{
    color: #bc902d;
    position:relative;
    left:20%;
    width:60%;
    margin-top: 5rem;
}
.table-style{
    background-color: #bc902d;
    color:white;
    position:relative;
    left:20%;
    width:60%;
    margin-bottom: 5rem;
}
.table-style a{
    color: white;
}
#table1 tbody tr {
    border-bottom:1pt solid white;
}
#table1 tbody tr td{
    border-left:1pt solid white;
}
.place-headings{
    color: #282627;
}
.diamond-section-padding{
    padding: 5rem 0 2.5rem 0;
}
.sapphire-section-padding, .emerald-section-padding, .ruby-section-padding{
    padding: 2.5rem 0 2.5rem 0;
}
.sectionPadding
{
    padding: 4rem 4rem;
}
.mapSectionPadding{
    padding: 0 4rem 5rem 4rem;
}
.li-padding
{
    padding-left: 4rem;
}
.display-inline{
    display: inline !important;
}

/*End Investment Oppotortunities page*/

/* Copyright container */
.copyright-container{
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    margin: 0;
    background-color: #bc902d;
}
.copyright{
    text-align: center;
    color: white;
    margin-top: 15px;
    font-size: 2rem;
    font-weight: 300;
}
/*End Copyright container*/

/*modal*/
@media (min-width: 768px) {
    .modal {
        text-align: center;
        padding: 0!important;
    }
    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px;
    }

    .modal-dialog {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }
}
.modal-dialog .modal-content .modal-header .modal-title{
    color: #bc902d !important;
}
.modal-btn-style{
    background-color: #bc902d !important;
    color: white !important;
}
/*modal-Ends*/


@media (max-width: 767px) and (min-width: 100px){
    /* Slider */
    .success-error-popup{
        margin-top: 5rem;
    }
    .home .owl-dots {
        position: absolute;
        bottom: 0;
        display: inline;
        left: 43%;
    }
    .place .owl-dots, .villas .owl-dots {
        bottom: 0;
        left: 35%;
        display: inline;
    }
    .enclave .owl-dots {
        bottom: 0;
        left: 25%;
    }
    .owl-theme .owl-dots .owl-dot span{
        width: 7px;
        height: 7px;
        margin: 5px 5px;
    }
    .owl-dot.active span {
        width:7px !important;
    }
    .scrollDownWrap{
        display: none;
    }
    .constant-img{
        width: auto;
        height: 100%;
    }
        /* Home page*/
    .img-resp{
        background-image: url("../img/home-background-mob.jpg");
    }
    .home-about-heading,.home-why-veritas-heading {
        font-size: 3rem;
        text-align: center;
    }
    .li-width{
        width: 100%;
    }
    .nav-tabs {
        border-bottom: none !important;
    }
    .media-heading{
        font-size: 2rem;
        line-height: 1.5;
    }
    .media-body{
        font-size: 1.5rem !important;
        text-align: center;
        line-height: 32px !important;;
    }
    .home-featured-projects-heading,.home-news-heading{
        font-size: 3rem;
        text-align: center;
    }
    .featured-details {
        color: #bc902d;
        font-size: 1.8rem;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
    .about{
        padding: 10px 20px;
    }
    .about h3
    {
        font-size: 2rem;
    }
    .about > p {
        font-size: 1.75rem;
    }
    .news-heading {
        color: #282627;
        font-weight: 900;
        font-size: 2rem;
        margin-top: 30px;
    }
    .news-details {
        color: #868F9B;
        font-size: 1.75rem;
    }
    .home-start-project-heading {
        font-size: 2rem;
        color: #fff;
        padding-left: 2rem;
        text-align: left;
    }
    .details-white {
        color: #fff;
        font-size: 20px;
        padding-left: 1em;
        padding-right: 1em;
    }
    #home-start-project .btn {
        margin-top: 1em;
        margin-left: 2rem;
        border-radius: 0px !important;
        height: 40px;
        font-size: 1.25rem;
        font-weight: 700;
        outline: none;
    }
    /*End Home page*/
   /* #about-page{
        padding: 0rem 0.5rem 0rem 0.5rem;
        background-color: #0e0e0e;
    }*/

    /**********/

    .who-we-are{
        width: 100%;
        overflow-x:hidden;
        overflow-y: hidden;
        margin: 0 !important;
        padding: 2rem 0 0 0;
        background-color: #282627;
    }
    .who-we-are-heading{
        font-size: 3rem;
        color: white;
        text-align: center;
    }
    .left-container{
        padding-top: 0rem;
        padding-bottom: 3rem;
        padding-left: 2rem;
    }
    .right-container{
        padding: 0;
    }
    .leading-developer{
        line-height: 1.2;
        font-size: 2rem;
        color: #bb902d;
        text-align: center;
    }
    .leading-developer-para{
        line-height: 1.5;
        text-align: justify;
        margin-left: 15px;
    }
    .number-style{
        color: #bb902d;
        font-size: 1.5em;
        text-align: center;
    }
    .text-style{
        color: white;
        line-height: 1.5;
        text-align: left;
    }
    .arrow-img{
        content: url("../img/arrow-down.jpg");
    }
    .arrow-img:after{
        content: url("../img/arrow-down.jpg");
    }

    /*************/

    .key-success-factors-section{
        padding: 3rem 0 3rem 0;
    }
    .issues-faced-section{
        background-image: url('../img/bg_left_mob.jpg');
        padding: 3rem 0 3rem 0;
    }
    .solutions-provided-section{
        background-image: url('../img/bg_right_mob.jpg');
        padding: 3rem 0 3rem 0;
    }
    .issues-faced-heading, .solutions-provided-heading{
        color: #816a35;
        font-size: 2.5rem;
        text-align: center;
    }
    .issues-faced-ul, .solutions-provided-ul{
        list-style-type: square;
        padding-left: 1rem;
        color: #5c5656;
    }
    .key-success-factors-heading{
        margin-bottom: 0;
        color: #282627;
        font-size: 3rem;
        text-align: center;
    }
    .key-success-factors-small-text{
        padding-left: 0;
        padding-top: 2rem;
    }
    .key-success-factors-text{
        position: relative;
        text-align: center;
        padding: 1rem 0.5rem;
    }
    .sub-text{
        color: #bb902d;
        font-size:2rem;
    }
    .sub-text-discription{
        font-size: 1.75rem;
    }

    /*************/

    .our-team{
        padding: 3rem 0rem;
    }
    .our-team-margin-bottom{
        margin-bottom: 4rem;
    }
    .projects-completed-margin-bottom{
        margin-bottom: 50px;
    }
    .our-team-heading{
        margin-bottom: 0;
        color: white;
        font-size: 3rem;
        text-align: center;
    }
    .partners-container, .leadership-container{
        margin-bottom: 1rem;
        padding-left: 30px;
    }
    .partners, .leadership{
        padding: 1rem 2rem 1rem 2rem;
        background-color: #47485a;
        color: #bb902d;
        font-size: 2rem;
    }
    .team-person-name{
        font-size: 2.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
        color: white;
        text-align: center;
    }
    .team-person-details{
        color: white;
        text-align: center;
    }

    /*************/

    .strategic-partners{
        padding: 3rem 0rem;
    }
    .strategic-partners-margin-bottom{
        margin-bottom: 20px;
    }
    .strategic-partners-heading{
        margin-bottom: 0;
        color: #282627;
        font-size: 3rem;
        text-align: center;
    }
    .partner-company-name{
        font-size: 2rem;
        color: #bb902d;
        text-align: center;
    }
    .partner-company-details{
        line-height: 1.5;
        font-size: 1.75rem;
        text-align: left;
    }

    /*************/

    .projects-completed{
        padding: 3rem 0rem;
    }
    .projects-completed-heading{
        margin-bottom: 0;
        color: #282627;
        font-size: 3rem;
        text-align: center;
    }
    .category-container{
        margin-bottom: 2rem;
        padding-left: 30px;
    }
    .category{
        padding: 0.5rem 1rem 0.5rem 1rem;
        font-size: 2rem;
    }
    .location-name{
        color: #bc902d;
        padding-left: 15px;
    }
    .table-responsive{
        margin-top:15px;
    }

    /*************/

    .capabilities{
        width: 100%;
        overflow-x:hidden;
        overflow-y: hidden;
        background-color: white;
        margin: 0 !important;
        padding: 4rem 0rem;
    }
    .capabilities-margin-bottom{
        margin-bottom: 20px;
    }
    .capabilities-small-text {
        padding-left: 0rem;
        padding-top: 2rem;
        text-align: center;
    }
    .capabilities-heading{
        margin-bottom: 0;
        color: #282627;
        font-size: 5rem;
        text-align: center;
    }
    .residential-buildings{
        font-size: 4rem;
        color: #bb902d;
        text-align: left;
    }
    .residential-buildings-para{
        line-height: 2;
        color: black;
        font-size: 1.5rem;
        text-align: left;
    }
    .residential-img-style{
        padding: 5rem 1rem 0rem 1rem;
    }
    .smart-buildings{
        font-size: 4rem;
        color: #bb902d;
        text-align: right;
    }
    .smart-buildings-para{
        line-height: 2;
        color: black;
        font-size: 1.5rem;
        text-align: right;
    }
    .smart-img-style{
        padding: 5rem 1rem 0rem 1rem;
    }
    .healthcare-buildings{
        font-size: 4rem;
        color: #bb902d;
        text-align: left;
    }
    .healthcare-buildings-para{
        line-height: 2;
        color: black;
        font-size: 1.5rem;
        text-align: left;
    }
    .healthcare-img-style{
        padding: 5rem 1rem 0rem 1rem;
    }

    /*************/

    .contact-section{
        width: 100%;
        overflow-x:hidden;
        overflow-y: hidden;
        background-color: #282627;
        margin: 0 !important;
        padding: 4rem 0rem 10rem 0rem;
    }
    .get-in-touch{
        color:#fff;
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
    }
    .contact-heading{
        color:#fff;
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-top: 2rem;
    }
    .contact-details{
        color: #969393;
        font-weight: 300;
    }
    .icon-font-size{
        font-size: 1.5rem;
    }
    .contact-list
    {
        margin-top: 2em;
    }
    .contact-footer-column{
        height: 30vh;
    }
    .contact-footer-container{
        width: 100%;
        position: absolute;
        right: 0;
    }

    /*************/

    .tabs-mob-style{
        width: 100% !important;
    }
    .all-projects{
        width: 100%;
        overflow-x:hidden;
        overflow-y: hidden;
        background-color: #282627;
        margin: 0 !important;
        padding: 2rem 0rem 0rem 0rem;
    }
    .our-projects{
        font-size: 3rem;
        color: white;
        text-align: center;
    }
    .container-margin{
        margin-top: 2rem;
    }

    /*Industry Overview page*/

    .industry-top-container{
        width: 100%;
        overflow-x:hidden;
        overflow-y: hidden;
        background-color: white;
        margin: 0 !important;
        padding: 4rem 0rem 2rem 0rem ;
    }
    .recent-trends-heading{
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .heading-odd,.heading-even{
        font-size: 8rem;
        color: #bc902d;
        text-align: center;
    }
    .para-odd{
        margin-top: 0rem;
        font-size: 1.75rem;
        text-align: left;
    }
    .para-even{
        margin-top: 0rem;
        font-size: 1.75rem;
        text-align: right;
    }
    .industry-bottom-container{
        width: 100%;
        overflow-x:hidden;
        overflow-y: hidden;
        background-color: white;
        margin: 0 !important;
        padding: 2rem 0rem 4rem 0rem ;
    }
    .global-construction-heading{
        font-size: 2.2rem;
        margin-bottom: 4rem
    }
    .four-cols-heading-style{
        font-size: 2rem;
        color: #bb902d;
    }
    .m-2{
        margin: 2rem 0rem;
    }
    .see-all-opportunities{
        font-size: 1.5rem;
    }

    /*End Industry Overview page*/

    .veritas-place, .veritas-villas{
        width: 100%;
        overflow-x:hidden;
        overflow-y: hidden;
        margin: 0 !important;
        padding: 2rem 0 0 0;
        background-color: white;
    }
    .veritas-place-heading, .veritas-villas-heading, .veritas-enclave-heading{
        font-size: 3rem;
        color: #282627;
        text-align: center;
    }
    .residencies-text-padding-top{
        padding-top: 5%;
    }
    .floorplan-text-padding-top{
        padding-top: 10%;
    }
    .floorplan-img-padding-top{
        padding-top: 5%;
    }
    .residencies-heading{
        color: #bc902d;
        position:relative;
        left:0;
        width:100%;
        margin-top: 4rem;
    }
    .table-style{
        background-color: #bc902d;
        color:white;
        position:relative;
        left:0;
        width:100%;
        margin-bottom: 4rem;
    }
    .table-style a{
        color: white;
    }
    #table1 tbody tr {
        border-bottom:1pt solid white;
    }
    #table1 tbody tr td{
        border-left:1pt solid white;
    }
    .diamond,.sapphire,.emerald,.ruby{
        position: relative;
        margin-bottom: 2rem;
        text-align: center;
    }
    .place-headings{
        color: #282627;
        font-size: 2rem;
    }
    .diamond-section-padding{
        padding: 2rem 0 2rem 0;
    }
    .sapphire-section-padding, .emerald-section-padding, .ruby-section-padding{
        padding: 2rem 0 2rem 0;
    }
    .sectionPadding
    {
        padding: 2rem 2rem;
    }
    .mapSectionPadding {
        padding: 0px 1rem 2rem 1rem;
    }
    .li-padding
    {
        padding-left: 2rem;
    }
    .type-a-heading, .type-b-heading, .first-floor-heading, .ground-floor-heading{
        font-size: 2rem;
    }
    .enclave-locations-para{
        text-align: center;
    }
    .enclave-bg-position{
        background-position: top left;
    }

    /*End Investment Oppotortunities page*/

    /* Copyright container */

    .copyright{
        text-align: center;
        color: white;
        margin-top: 15px;
        font-size: 1.5rem;
        font-weight: 300;
    }

    /*End Copyright container*/
}

@media (max-width: 1100px) and (min-width: 768px){
    .constant-img{
        width: auto;
        height: 100%;
    }
    .contact-footer-column{
        height: 50vh;
    }
    .main-nav li {
        padding: 0px 10px;
    }
    .navbar-brand .logo, .navbar-brand .logo-alt {
        max-height: 60px;
        display: block;
        margin-left: 1rem;
    }

    #nav {
        padding: 10px 0px;
        background: #FFF;
        -webkit-transition: 0.2s padding;
        transition: 0.2s padding;
        z-index: 999;
    }

    #nav.navbar {
        border: none;
        border-radius: 0;
        margin-bottom: 0px;
        position: absolute;
        left: 3%;
    }

    #nav.fixed-nav {
        position: fixed ;
        left: 0;
        right: 0;
        padding: 0px 0px;
        background-color: #282627 !important;
        /* border-bottom: 1px solid #EEE;*/
    }

    #nav.nav-transparent {
        background: transparent;
    }

}
@media (max-width: 991px) and (min-width: 768px){
    .owl-carousel {
        width: 100%;
        height: auto;
    }
    .home-about-heading, .who-we-are-heading, .key-success-factors-heading,
    .our-team-heading, .strategic-partners-heading, .projects-completed-heading,
    .home-featured-projects-heading, .home-why-veritas-heading, .home-news-heading{
        text-align: center;
        font-size: 5rem;
    }
}
