body{
	padding:0;
	margin:0;
	background:#fff;
	position:relative;
	font-family: 'Montserrat', sans-serif;
}
body a{
    transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
a:hover{
	text-decoration:none;
}
input[type="button"],input[type="submit"],.contact-form input[type="submit"]{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
h1,h2,h3,h4,h5,h6{
	margin:0;	
}	
p{
	margin:0;
    font-family: 'Open Sans', sans-serif;
}
ul{
	margin:0;
	padding:0;
}
label{
	margin:0;
}
img{
	width:100%;
}


/*-- header --*/
.w3_agile_logo {
    margin: 0;
}
h1 {
    display: inline-block;
}
.w3_agilits_banner_bootm {
    position: absolute;
    z-index: 9;
    width: 100%;
    padding: 1rem 0;
}
.w3_agile_logo a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    font-size: 1em;
    text-transform: capitalize;
}
.w3_agile_logo h1 span {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: center;
    display: block;
    color: #FFFFFF;
    position: relative;
}
.w3_agile_logo h1 span:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 25px;
    background: #fff;
    bottom: 47%;
    left: 13%;
}
.w3_agile_logo h1 span:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 25px;
    background: #fff;
    bottom: 47%;
    right: 13%;
}

/*-- menu --*/

.m_nav_ham {
    box-sizing: border-box;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#m_nav_container {
    width: 100%;
    height: 80px;
    background-color: #9563BF;
    position: fixed;
    display: none;
    top: 0px;
    left: 0;
    z-index: 990 !important;
}

.wthree_bg {
    -webkit-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    transform: translate(0, -100%);
    -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wthree_bg.container_open {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

#m_nav_bar {
    width: 80%;
    margin: auto;
}

#m_nav_list {
    list-style: none;
    margin: 1.5em 0 0;
}

.m_nav_item {
    display: inline-block;
    margin: 0 1em;
}

.m_nav_item a {
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
	font-size: 15px;
    -webkit-transition-duration: 0.5s;
}

.container_open {
    position: fixed !important;
    display: block;
    height: 120px;
}

#m_nav_menu {
    width: 50px;
    height: 32px;
    position: fixed;
    top: 30px;
    right: 5.4%;
    z-index: 999 !important;
    cursor: pointer;
}

.m_nav_ham {
    width: 33px;
    height: 3px;
    background: #fff;
    margin: 7px auto;
}

.m_nav_ham_1_open {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 15px;
}

.m_nav_ham_2_open {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -10px;
}

.m_nav_ham_3_open {
    opacity: 0;
}

.button_open {
    background: #333;
}

.w3_agileits_ham {
    margin-top: .8em;
}

.w3_agileits_ham.m_nav_ham_1_open {
    margin-top: 20px !important;
}

#m_nav_container {
    text-align: center;
}

#m_nav_menu {
    top: 3.5%;
}

.dropdown-menu>li>a {
    display: block;
    padding: 4px 15px;
}

.dropdown-menu {
    min-width: 133px;
}

/*-- nav-effect --*/

.menu__list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu__link {
    display: block;
    padding: .5em;
}

/* Sebastian */

.menu--sebastian .menu__link {
    position: relative;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
}

.menu--sebastian .menu__link:hover {
    color: #fff;
}

.menu--sebastian .menu__item--current .menu__link {
    color: #fff;
}

.menu--sebastian .menu__link::before,
.menu--sebastian .menu__link::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.38);
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

.menu--sebastian .menu__link::before {
    top: 0;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.menu--sebastian .menu__link::after {
    bottom: 0;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.menu--sebastian .menu__item--current .menu__link::before,
.menu--sebastian .menu__item--current .menu__link::after,
.menu__link:hover::before,
.menu__link:hover::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

/* //Sebastian */

/*-- //header --*/

/*--Banner stats here--*/
.baner {
    background: url(../images/b3.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    -moz-background-size: cover;
    min-height: 350px;
}

/*-- banner-text--*/
.banner-text {
    text-align: center;
    padding: 17em 0 0 0;
}
.banner-text h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 80px;
    letter-spacing: 5px;
}
.banner-text h2 span{
    font-weight: 800;
}
.banner-text i {
    color: #eee;
    font-size: 60px;
    margin:0 20px;
}
.baner-info{
   position: absolute;
    padding-top:4em;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    top: 0;
}
.baner-info h3 {
       text-align: center;
    font-size: 3.5em;
    color: #fff;
    font-weight: 600;
    letter-spacing: 4px;
}
.baner-info h3 span {
	color:#fbcd13;
}
.baner-info h4{
    text-align: center;
    font-size: 1em;
       margin: 2em 0 2em 0;
    font-weight:500;
    letter-spacing: 10px;
    color: #ffcc33;
    padding: 15px 0;
}
.w3-banner-head-info {
    position: relative;
}
.baner-info p {
	font-size: 1em;
    font-weight: 300;
    letter-spacing:2px;
    color: #fff;
    width: 32%;
    margin: 0 auto;
}
span.simply-word {
    font-size:18px;
    font-weight: 500;
    margin-left: 5px;
    text-transform: uppercase;
    color: #02a388;
}
.baner-info span img {
    margin: 1em auto 0;
    text-align: center;
}
.baner-w3l-agile-grids-bottom {
       margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 12%;
    bottom: -62%;
    width: 80%;
}
.w3l-b-grid{
	float:left;
	width:32%;
}
.w3l-b-one{
      background:url(../images/b1.jpg) no-repeat 0px 0px;
    min-height:100px;
    background-size: cover;
    text-align: center;
	    transition: .5s ease-in;
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -o-transition: .5s ease-in;
    -ms-transition: .5s ease-in;
	}
.w3l-b-grid .w3l-b-one:hover{
	  min-height:200px;
}
/*-- //banner-text--*/

/*-- banner bottom slider --*/
.item h4 {
    color: #222;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 32px;
}
/*-- banner bottom slider --*/

/*-- welcome --*/
h3.heading {
    font-size: 45px;
    letter-spacing: 4px;
    font-family: verdana;
    background: -webkit-linear-gradient(left, green, yellow);
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.icon {
	position: relative;
}
.icon span{
	color: #00BCD4;
}
.icon span:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 60px;
    background: #333;
    bottom: 44%;
    left: 44%;
}
.icon span:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 60px;
    background: #333;
    bottom: 44%;
    right: 44%;
}
p.welcome-para {
    font-size: 15px;
    letter-spacing: 1px;
    color: #555;
    text-align: center;
    line-height: 28px;
}
.welcome-right h4{
    color: #222;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 2px;
}
.welcome-right h4 span {
    color: #e7272d;
    text-decoration: underline;
}


.welcome-right {
    position: relative;
    padding-right: 50px;
}
.welcome-right a {
     padding: 12px 30px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    background: #e7272d;
    border: 1px solid #e7272d;
    margin-top: 2em;
    display: inline-block;
    border-radius: 30px;
}
.welcome-right a:hover,.welcome-right a.know:hover{
	background: #333;
    border: 1px solid #333;
}
.welcome-right a.know {
     padding: 12px 30px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    background: #00BCD4;
    border: 1px solid #00BCD4;
    margin-top: 2em;
    display: inline-block;
    border-radius: 30px;
}
h6.w3l-style {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    bottom: 39%;
     border: 2px solid #D17807;
    padding: 10px 20px;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    right: 89.5%;
    background: #D17807;
}
h6.w3l-style:after {
    position: absolute;
    content: '';
    background: #D17807;
    width: 150px;
    top: 45%;
    left: 115%;
    height: 2px;
}
h6.w3l-style:before {
    position: absolute;
    content: '';
    background: #D17807;
    width: 50px;
    bottom: 45%;
    right: 115%;
    height: 2px;
}

h5.w3l-style {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    bottom: 102%;
    border: 2px solid #D17807;
    padding: 10px 20px;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(0deg);
    right: 40.5%;
    background: #D17807;
}

h5.w3l-style:after {
    position: absolute;
    content: '';
    background: #D17807;
    width: 50px;
    top: 45%;
    left: 115%;
    height: 2px;
}
h5.w3l-style:before {
    position: absolute;
    content: '';
    background: #D17807;
    width: 203px;
    bottom: 45%;
    right: 115%;
    height: 2px;
}

.stats {
    padding: 0px 0 45px 0;
}

/*-- Stats --*/
.numscroller {
	text-align:left;
	font-size: 1.5em;
     color: #555;
    font-weight: 800;
}
.stats-grid i {
    padding: 20px 0 0 0;
    float: left;
    width: 80px;
     font-size: 40px;
    color:#37363d ;
}
.stats-grid {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}
p.stats-info {
	margin-top: 0px;
    font-size: 0.5em;
    color:#777;
}
.icon1 i{
	color: #0a8ea0;
}
.icon2 i{
	color: #f48924;
}
.icon3 i{
	color: #7ac143;
}
.icon4 i{
	color: #f85a40;
}
/*-- //Stats --*/
/*-- //welcome --*/

/*-- blog --*/
.blogimg{
	background:url(../images/b1.jpg) no-repeat center;
	background-size: cover;
}
.blogimg1{
	background:url(../images/b2.jpg) no-repeat center;
	background-size: cover;
}
.blogimg2{
	background:url(../images/b3.jpg) no-repeat center;
	background-size: cover;
}
.blogimg3{
	background:url(../images/b4.jpg) no-repeat center;
	background-size: cover;
}
.blog1{
    background: #131313;
    color: #eee;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}
.blog1 a,.blog2 a {
    padding: 12px 30px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #777;
    border: 1px solid #777;
    margin-top: 2em;
    display: inline-block;
}
.blog1 a:hover,.blog2 a:hover {
    color: #00BCD4;
    border: 1px solid #00BCD4;
}
.blog1 h3,.blog2 h3 {
    font-size: 25px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 40px;
}
.blog1 h4,.blog2 h4 {
    color: #ccc;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 32px;
    font-weight: 600;
}
.blog2{
    background: #333;
    color: #eee;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}
.blog1 h5,.blog2 h5 {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 1em;
}
/*-- blog --*/

body a:hover {
    text-decoration: none;
}

body a:focus {
    outline: none;
    text-decoration: none;
}

/* //inner bg */
.single p {
    margin: 0;
    font-size: 0.95em;
    color: #888;
    line-height: 2em;
    letter-spacing: 1px;
}
a.btn.btn-primary.read-m,.btn-primary {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
	
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    background: #e7272d;
    border: 1px solid #e7272d;
    display: inline-block;
    border-radius: 30px;
}

a.btn.btn-primary.read-m:hover, a.btn.btn-primary.read-m:focus,.btn-primary:hover,.btn-primary:focus {
    background: #333;
    border: 1px solid #333;
}

/*-- blog --*/

.blog-img {
    padding: 0;
}

ul.blog_list {
    margin-bottom: 1.5em;
}

.blog-bottom {
    background: #eb5273;
    padding: 2em;
    min-height: 330px;
}

.blog_info h5 a {
    font-size: 1em;
    color: #2c2d2d;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 1px;
}

.blog_info p a.user-blog {
    color: #555;
    text-transform: capitalize;
    font-size: 1em;
}

ul.blog_list li {
    display: inline-block;
    color: #212121;
    font-size: 0.9em;
}

ul.blog_list li span {
    color: #168eea;
    padding-right: 8px;
}

ul.blog_list li i {
    padding: 0 1em;
    font-style: normal;
    color: #999;
}

ul.blog_list li a {
    text-decoration: none;
    color: #212121;
}

.blog_info h5 {
    margin: 12px 0 15px;
}

.blog_info {
    padding: 2em;
    border: 3px solid #f5f5f5;
    background-color: #f5f5f5;
}

.blog-side.blog-top-right {
    padding-right: 0;
}

.single-left1.blog_info {
    margin: 0;
}

.blog_info p {
    margin: 0 0 1em 0;
    color: #777;
}

ul.blog_list li a {
    font-weight: 400;
    font-size: 0.9em;
    letter-spacing: 1px;
    color: #515252;
}

/*-single-*/

ul.list-group.single {
    color: #727373;
}

ul.list-group.single .badge-primary {
    color: #fff;
    background: #8e9194;
}

h5.mt-0 {
    font-size: 20px;
    color: #00BCD4;
    margin-bottom: 0.5em;
}

.tech-btm h4 {
    font-size: 1.6em;
    color: #2c363e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
    margin-bottom: .7em;
}

.progress {
    font-size: 0.75em;
    line-height: 8em;
    text-align: center;
    background-color: #d6d9da;
    border-radius: 0.25rem;
    margin-bottom: 1em;
}

.tech-btm input[type="email"] {
    width: 100%;
    color: #737070;
    outline: none;
    font-size: 14px;
    padding: 0.6em 1em;
    border: 2px solid #ccc;
    -webkit-appearance: none;
    letter-spacing: 1px;
    margin: 1em 0;
}

.tech-btm input[type="submit"] {
    background: #01cd74;
    padding: .7em 1em;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: block;
    outline: none;
    border: none;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
}

.blog-grid-top h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #2c363e;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
}

.single-gd form input {
    width: 100%;
}

.single-gd img {
    margin-bottom: 1em;
}

.comment-top input[type="text"],
.comment-top input[type="email"],
.comment-top textarea {
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #ccc;
    padding: 0.7em 1em;
    font-size: 0.9em;
    color: #555;
    margin: 0 0 0.7em;
    letter-spacing: 2px;
}

.comment-top button.btn.btn-primary.submit[type="submit"] {
    text-align: center;
    outline: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -moz-transition: 0.5s all;
    cursor: pointer;
     padding: 12px 40px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    background: #00BCD4;
    border: 1px solid #00BCD4;
    display: inline-block;
    border-radius: 30px;
}

.comment-top button.btn.btn-primary.submit[type="submit"]:hover {
    background: #333;
    border: 1px solid #333;
}

.single-gd form input[type="email"] {
    outline: none;
    padding: 12px 15px;
    font-size: 13px;
    color: #777;
    background: #ffffff;
    letter-spacing: 2px;
    border: none;
    border: 1px solid #ddd;
    margin: 0;
    border-radius: 0;
}

.comment-top button.btn.btn-primary.submit {
    background: #080808;
    padding: .8em 1em;
    color: #fff;
    font-size: 15px;
    display: block;
    outline: none;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    margin-top: 1em;
}

.comment-top button.btn.btn-primary.submit:hover {
    background: #1cbbb4;
}

.media-body p {
    color: #777;
    font-size: 0.875em;
    line-height: 1.9em;
    margin-bottom: 3em;
}

.comment h3,
.comment-top h4 {
    font-size: 28px;
    color: #2c363e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
    margin-bottom: 1em;
}

.media img {
     width: 15%;
    margin-right: 15px;
    box-shadow: 4px 4px #e4e4e4;
    -webkit-box-shadow: 4px 4px #e4e4e4;
    -o-box-shadow: 4px 4px #e4e4e4;
    -moz-box-shadow: 4px 4px #e4e4e4;
    -ms-box-shadow: 4px 4px #e4e4e4;
}

.blog_info_left_grid img {
    box-shadow: 4px 4px #d6d9da;
    -webkit-box-shadow: 4px 4px #d6d9da;
    -moz-box-shadow: 4px 4px #d6d9da;
    -o-box-shadow: 4px 4px #d6d9da;
}

.comment-top {
    margin-top: 2em;
}

.tech-btm img {
    box-shadow: 4px 4px #e4e4e4;
    -webkit-box-shadow: 4px 4px #e4e4e4;
    -o-box-shadow: 4px 4px #e4e4e4;
    -moz-box-shadow: 4px 4px #e4e4e4;
    -ms-box-shadow: 4px 4px #e4e4e4;
}

/* //blog responsive code */

@media screen and (max-width: 1680px) {}

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1280px) {}

@media screen and (max-width: 1080px) {
    .blog_info p {
        line-height: 1.5;
        letter-spacing: 0.3px;
    }
    .blog_info {
        min-height: 275px;
        padding: 1em 2em;
    }
    .blog_info.blog-right {
        min-height: 305px;
        width: 100%;
    }
}

@media screen and (max-width: 1050px) {
    .blog_info.blog-right {
        min-height: 297px;
    }
    .blog-x.br-mar {
        margin-top: 1.2em;
    }
    .blog_info.blog-right {
        min-height: 370px;
    }
    .blog_info.blog-right {
        min-height: 370px;
        width: 100%;
    }
    .blog_info.blog-right.two {
        min-height: 369px;
    }
}

@media screen and (max-width: 1024px) {
    .blog_info.blog-right {
        min-height: 372px;
    }
    .blog_info.blog-right.two {
        min-height: 373px;
    }
}

@media screen and (max-width: 991px) {
    .blog_info {
        min-height: auto;
        padding: 2em 2em;
    }
    .blog_info.blog-right {
        min-height: auto;
    }
    .blog-side.blog-top-right {
        padding-right: 0;
        margin-top: 1em;
    }
    .blog_info.blog-right.two {
        min-height: auto;
    }
    .right-blog-con {
        margin-top: 2em;
    }
    .single-left {
        margin-top: 2em;
    }
  
}

@media screen and (max-width: 667px) {
    .row {
        margin-right: 5px;
        margin-left: 5px;
    }
    .blog-side.blog-top-right {
        padding-right: 0;
        margin-top: 1em;
        padding: 0;
    }
    .blog-sp {
        padding: 0;
    }
    .mt-3 {
        margin-top: 1em !important;
        display: block;
    }
    .single-left {
        margin-top: 2em;
        padding: 0;
    }
}

@media screen and (max-width: 640px) {
    .blog-sp {
        padding: 0;
    }
    .media {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .comment-top input[type="submit"] {
        width: 40%;
    }
    .blog-grid-top h3 {
        font-size: 1.6em;
    }
    .media img {
        margin-bottom: 1em;
    }
    .comment h3, .comment-top h4 {
        font-size: 1.6em;
    }
}

@media screen and (max-width: 568px) {}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 414px) {
    .comment-top input[type="submit"] {
        width: 45%;
    }
}

@media screen and (max-width: 384px) {}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}

/* //blog responsive code */

/*-- video --*/
.videobg{
	background:url(../images/b2.jpg) no-repeat center;
	background: #333;
	position: relative;
}
.videobg h5{
    color: #aaa;
    text-transform: capitalize;
    letter-spacing: 2px;
    line-height: 40px;
    font-size: 25px;
    font-weight: normal;
}
.videobg h4 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 5px;
    line-height: 32px;
    color: #eee;
}
.videobg p {
    position: absolute;
    color: #aaa;
    font-size: 200px;
    top: 0%;
    left: 24%;
    opacity: .05;
	font-weight: 800;
	font-family: 'Montserrat', sans-serif;
}
/*-- video --*/
/* video popup */
.button a {
    padding: 10px 22px;
    display: inline-block;
    background: rgba(48, 42, 42, 0.85);
    border-radius: 11px;
    color: #ffffff;
    outline: none;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.button span {
    font-size: 20px;
    vertical-align: middle;
}

.pop-bg2 .button {
    padding-top: 17em;
}

.demo-left iframe {
    width: 100%;
    border: none;
}

.small-demo iframe {
    min-height: 196px;
}

.video-grid1 {
    padding: 0;
}

.pop-row2 {
    margin: 1.5em 0;
}

.pop-row2-middle {
    margin: 0 1.2em;
}

.poprow-3 {
    margin-right: 1.2em;
}

.popl-row {
    margin-top: 1.5em;
}

h3.video-txt {
    color: #000;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.5;
}

p.video-p-agileinfo {
    letter-spacing: 0.3px;
}

.img-caption {
    background: #ededed;
    padding: 1em;
}

.img-caption p.video-p-agileinfo {
    letter-spacing: 0.3px;
    font-size: 0.9em;
}
arrow-container,
.arrow-1 {
    width: 100px;
    height: 100px;
}
.arrow-1 {
    background:transparent;
    opacity: 0.5;
    border-radius: 50%;
    position: absolute;
}

.arrow-2 {
    display: table;
}

/* //video popup */


/*-- services --*/
.service-grid1 h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 32px;
    font-weight: 600;
}
.service-grid1 h4 span{
      text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 32px;
    font-weight: 600;
    font-family: showcard gothic;
background: -webkit-linear-gradient(left, red, yellow, brown);
    background-clip: border-box;
background-clip: border-box;
background-clip: border-box;
background-clip: border-box;
background-clip: border-box;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.service-grid1 p {
    font-size: 15px;
    letter-spacing: 1px;
    color: #fffc;
    line-height: 28px;
}
.layer {
    background: rgba(0, 0, 0, 0.3);
    height: 25vw;
}
.videoplay1{
	background: url(../images/a2.jpg) no-repeat center;
	background-size: cover;
	height: 25vw;
}
.videoplay2{
	background: url(../images/a1.jpg) no-repeat center;
	background-size: cover;
	height: 25vw;
}
.videoplay3{
	background: url(../images/a3.jpg) no-repeat center;
	background-size: cover;
	height: 25vw;
}
.fashionvideo i{
    font-size: 60px;
    color: #fff;
     margin-top: 3em;
}
.fashionvideo h4 {
      color: #333;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 32px;
    font-weight: 600;
}
/*-- //services --*/

/* map */
.map {
    position: relative;
}
.map iframe {
    width: 100%;
    min-height: 400px;
    margin-bottom: -6px;
	border:none;
}
.agile_map_grid {
    position: absolute;
    bottom: 13%;
    right: 15%;
    width: 32%;
   background: #00BCD4 none repeat scroll 0 0;
}
.agile_map_grid::before {
    content: '';
    position: absolute;
    right: 100%;
    transform: rotate(360deg);
    top: 45%;
    border-left: 0;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;
    border-right: 30px solid #00BCD4;
    background: transparent;
}
.agile_map_grid1 {
    padding: 3em;
}
.agile_map_grid1 a {
    color: #eee;
}
.agile_map_grid1 a:hover{
    color: #fff;
}
.agile_map_grid h3 {
    font-size: 22px;
    color: #fff;
    padding-bottom: .5em;
    position: relative;
    margin-bottom: .5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.agile_map_grid ul li {
    display: inline-block;
    color: #eee;
    letter-spacing: 1px;
     line-height: 28px;
    margin-bottom: 1em;
    text-transform: capitalize;
}
.agile_map_grid ul li i {
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
	color: #fff;
    margin-right: 1em;
}
.agile_map_grid ul li span {
    color:#fff;
    font-weight: 600;
}

/* //map */

/*-- Contact form --*/
.contact_right input[type="text"], .contact_right input[type="email"], .contact_right textarea {
    outline: none;
     padding: 15px 12px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    width: 100%;
    letter-spacing: 1px;
    border: none;
    border-bottom: 2px solid #fff;
}
.contact_right input[type="email"] {
    margin: 1em 0;
}
.contact_right h3 {
    color: #222;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 600;
}
.contact_right textarea {
    min-height: 145px;
    resize: none;
    margin: 1em 0;
}
.contact_right input[type="submit"]
{
    font-size: 19px;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, white 50%, #199cdb 50%);
    transition: background-position 0.3s linear, color 0.3s linear;
    color: #000;
    width: 35%;
    margin: 35px auto 0;
    border: none;
    padding: 15px 10px;
    display: flex;
}
.contact_right input[type="submit"]:hover {
    background-position: -100% 0;
color: #fff !important;
}
.col-md-6.contact_right.p-lg-5.p-4 {
    border: 2px dashed #494949;
}
/*-- Contact form --*/

/*-- model --*/
.model h4 {
    color: #222;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
}
.model p {
    font-size: 15px;
    letter-spacing: 1px;
    color: #777;
    line-height: 28px;
}
/*-- //model --*/

/*-- footer --*/
.footer {
    background: #7710CB;
}
.footer-grid h3, .footer-list h3, .agile-footer-grid h3 {
    font-size: 24px;
    color: #FFFFFF;
    text-transform: capitalize;
    line-height: 1.5em;
    letter-spacing: 2px;
}

.footer-grid h5
{
    font-size: 24px;
    color: #FFFFFF;
    text-transform: capitalize;
    line-height: 1.5em;
    letter-spacing: 2px;
    margin: 0;
    width: 50%;
}


.footer-grid p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: 1px;
}
.footer-grid ul, .footer-list ul {
    padding: 0;
    margin: 0;
}
.footer-grid ul li, .footer-list ul li {
    display: block;
    margin: .4em 0 0;
}
.footer-logo li {
    display: inline-block !important;
}
.footer-logo ul li a {
    color: #bbb;
    font-size: 1.2em;
    text-decoration: none;
    padding-right: 5px;
}
.footer-list ul li {
    color: #bbb;
    font-size: 1em;
}
.footer-grid ul li {
    color: #fff;
     font-size: 13px;
    text-decoration: none;
    line-height: 2em;
    text-transform: capitalize;
    letter-spacing: 0px;
    font-family: 'Open Sans', sans-serif;
}
.footer-grid strong {
    text-decoration: underline;
     color: #eee;
}
.footer-grid ul li a  {
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    text-transform: capitalize;
     font-family: 'Open Sans', sans-serif;
}
.footer-grid ul li a:hover{
 
    text-decoration: underline;
}
.footer-grid ul li i:hover{
    color: #ccc;
 	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;

    
}
.agile-footer-grid ul {
    padding: 0;
    margin: 0;
}
ul.w3agile_footer_grid_list li {
    list-style-type: none;
    color: #bbbbbb;
    line-height: 1.8em;
    font-size: 1em;
}
ul.w3agile_footer_grid_list li a {
    color: #ff9900;
    text-decoration: none;
}
ul.w3agile_footer_grid_list li span {
    display: block;
    margin: 1em 0 0;
}
ul.w3agile_footer_grid_list i.fa.fa-twitter {
    margin-right: 1em;
}
.agile-footer-grid input[type="email"],.agile-footer-grid input[type="text"]{
	outline:none;
    padding: 11px 15px;
	background:#fff;
	border:none;
	font-size:14px;
	color:#212121;
    margin-bottom: 1em;
	width:100%;
    border-bottom: 1px solid #ccc;
     border-radius: 3px;
}
.agile-footer-grid input[type="submit"] {
    outline: none;
    padding: 11px 15px;
    border: none;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
    width: 100%;
    text-align: left;
    text-transform: capitalize;
    background-color: transparent;
    letter-spacing: 2px;
    text-align: center;
     border-radius: 3px;
}
.agile-footer-grid input[type="submit"]:hover{
    background: #00BCD4;
    border: 1px solid #00BCD4;
}
.footer-logo a {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
     font-size:33px;
    text-transform: capitalize;
}
.footer-logo h3 span {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: center;
    display: block;
	position: relative;
}
.footer-logo h3 span:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 40px;
    background: #fff;
    bottom: 47%;
    right: 5%;
}
.footer-logo h3 span:before{
    position: absolute;
    content: '';
    height: 2px;
    width: 40px;
    background: #fff;
    bottom: 47%;
    left: 5%;
}
.wthree_copy_right {
    background: #161616;
}
.wthree_copy_right p {
    text-align: center;
    color: #c1c1c1;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 2px;
}
.wthree_copy_right a {
    color: #fff;
}
.wthree_copy_right a:hover {
    color: #00BCD4;
}
.footer-logo .social i {
     width: 37px;
     text-align: center;
    line-height: 37px;
    font-size: 22px;
    color: #fff;
    border-radius: 0px;
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}
/*-- //footer --*/

/*-- inner-page-banner --*/
.inner-page-banner{
	background: url(../images/b1.jpg) no-repeat center;
	min-height: 300px;
}
.banner-dott {
    background: url(../images/dott.png)repeat 0px 0px;
    background-size: 2px;
    -webkit-background-size: 2px;
    -moz-background-size: 2px;
    -o-background-size: 2px;
    -ms-background-size: 2px;
	min-height: 300px;
}
.inner-page-banner h2 {
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    font-size: 3em;
	padding-top: 3em;
}
.inner-page-banner p a {
    margin-right: 1em;
    color: #00BCD4;
}
.inner-page-banner p {
    font-size: 17px;
    color: #eee;
}
/*-- inner-page-banner --*/

/*-- services flex-slider --*/
.about-left-grid {
    padding-left: 0;
}
#carousel li {
	margin-right: 0 !important;
	width: 110px !important;
}

#carousel img {
	display: block;
	opacity: .5;
	cursor: pointer;
}

#carousel img:hover {
	opacity: 1;
}

#carousel .flex-active-slide img {
	opacity: 1;
	cursor: default;
}

/*-- //services --*/


/*-- to-top --*/
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 0px;
	right: 2%;
	overflow: hidden;
	z-index: 999; 
	width: 40px;
	height: 40px;
	border: none;
	text-indent: 100%;
	background: url(../images/arr.png) no-repeat 0px 0px;
}
#toTopHover {
	width: 40px;
	height: 40px;
	display: block;
	overflow: hidden;
	float: right;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}
/*-- //to-top --*/


/*-- Responsive Design --*/

@media(max-width:1440px){
	
}
@media(max-width:1280px){
	.banner-text h2 {
		font-size: 70px;
	}
	.banner-text {
		padding: 14em 0 0 0;
	}
	.banner-text i {
		font-size: 50px;
	}
	.m_nav_item {
		margin: 0 1em;
	}
}
@media(max-width:1080px){
	.videobg p {
		font-size: 180px;
		left: 15%;
	}
	.blog1 h3, .blog2 h3 {
		font-size: 22px;
	}
	.footer-grid h3, .footer-list h3, .agile-footer-grid h3 {
		font-size: 22px;
		letter-spacing: 2px;
	}
	.footer-logo a {
		font-size: 1.2em;
	}
	.footer-logo h3 span:before {
		left: 13%;
	}
	.footer-logo h3 span:after {
		right: 13%;
	}
	.m_nav_item a {
		letter-spacing: 1px;
		font-size: 14px;
	}
	.m_nav_item {
		margin: 0 .8em;
	}
	.icon span:before {
		left: 42%;
	}
	.icon span:after {
		right: 42%;
	}
	.agile_map_grid {
		width: 39%;
	}
}
@media(max-width:1024px){
	.banner-text h2 {
		font-size: 60px;
		letter-spacing: 4px;
	}
	.banner-text i {
		font-size: 40px;
	}
	.banner-text {
		padding: 13em 0 0 0;
	}
	#m_nav_menu {
		right: 9.4%;
	}
	.stats-grid i {
		width: 75px;
		height: 75px;
	}
}
@media(max-width:991px){
	.banner-text h2 {
		font-size: 55px;
		letter-spacing: 3px;
	}
	.banner-text i {
		font-size: 35px;
		margin: 0 15px;
	}
	.videobg h5 {
		letter-spacing: 1px;
		font-size: 23px;
	}
	.blog1 h3, .blog2 h3 {
		font-size: 20px;
		letter-spacing: 0;
	}
	.blog1 h4, .blog2 h4 {
		font-size: 19px;
		letter-spacing: 1px;
	}
	.footer-logo .social i {
		width: 34px;
		height: 34px;
		line-height: 34px;
		font-size: 10px;
	}
	.w3_agile_logo a {
		font-size: .9em;
	}
	.stats-grid i {
		padding: 0px 0 0 0;
		float: none;
		width: auto;
		height: auto;
		font-size: 30px;
	}
	.numscroller {
		font-size: 1.2em;
		text-align: inherit;
	}
	.model {
		padding: 0 5px;
	}
	.inner-page-banner, .banner-dott {
		min-height: 250px;
	}
	.inner-page-banner h2 {
		font-size: 2.5em;
	}
	.fashionvideo h4 {
		font-size: 18px;
		letter-spacing: 1px;
	}
	.fashionvideo i {
		font-size: 50px;
		margin-top: 2em;
	}
	.agile_map_grid {
		width: 45%;
		right: 10%;
	}
}
@media(max-width:900px){
	#m_nav_menu {
		right: 5.4%;
	}
}
@media(max-width:800px){
	.banner-text {
		padding: 10em 0 0 0;
	}
	.banner-text h2 {
		font-size: 50px;
	}
	h3.heading {
		font-size: 40px;
		letter-spacing: 6px;
	}
	.videobg p {
		font-size: 150px;
		left: 12%;
	}
	.m_nav_item {
		margin: 0 .4em;
	}
	.icon span:before {
		left: 39%;
	}
	.icon span:after {
		right: 39%;
	}
	.blog-grid-top h3 {
		font-size: 20px;	
	}
	.comment h3, .comment-top h4 {
		font-size: 22px;
	}
	.tech-btm h4 {
		font-size: 1.4em;
	}
	.agile_map_grid {
		width: 55%;
		right: 5%;
	}
	.agile_map_grid h3 {
		font-size: 20px;
	}
	.agile_map_grid ul li {
		font-size: 15px;
	}
}
@media(max-width:768px){
	.m_nav_item {
		margin: 0 .3em;
	}
	.blog1 h3, .blog2 h3 {
		font-size: 18px;
	}
	.blog1 a, .blog2 a {
		padding: 10px 25px;
		font-size: 13px;
	}
	.model h4 {
		font-size: 16px;
	}
}
@media(max-width:736px){
	.m_nav_item a {
		letter-spacing: 1px;
		font-size: 13px;
	}
	.wthree_copy_right p {
		letter-spacing: 1px;
	}
	.footer-logo h3 span {
		width: 60%;
	}
	.videobg p {
		font-size: 130px;
	}
	.item h4 {
		font-size: 17px;
		letter-spacing: 1px;
	}
	.inner-page-banner, .banner-dott {
		min-height: 200px;
	}
	.inner-page-banner h2 {
		font-size: 2em;
	}
	.videoplay1,.videoplay2,.videoplay3,.layer {
		height: 30vw;
	}
}
@media(max-width:667px){
	.footer-logo h3 span {
		width: 65%;
	}
	.videobg p {
		font-size: 110px;
		left: 15%;
		top: 20%;
	}
	.service-grid1 p {
		font-size: 14px;
	}
	#m_nav_container {
		text-align: left;
	}
	#m_nav_menu {
		right: 4%;
	}
	.agile_map_grid {
		width: 60%;
		right: 2%;
	}
}
@media(max-width:600px){
	#m_nav_list {
        margin: 0 auto;
        width: 60%;
        padding: 2.2em 0 1em;
    }
    #m_nav_container {
        height: auto;
    }
    .m_nav_item {
        display: block;
        text-align: center;
        margin: 0 0 10px;
    }
	.m_nav_item a {
		font-size: 14px;
	}
	.banner-text h2 {
		font-size: 40px;
	}
	.footer-grid h3, .footer-list h3, .agile-footer-grid h3 {
		font-size: 20px;
		letter-spacing: 1px;
	}
	.icon span:before {
		left: 36%;
	}
	.icon span:after {
		right: 36%;
	}
	.agile_map_grid {
		width: 70%;
	}
}
@media(max-width:568px){
	h3.heading {
		font-size: 38px;
		letter-spacing: 3px;
	}
	p.welcome-para {
		font-size: 14px;
		letter-spacing: .5px;
	}
	.service-grid1 h4 {
		font-size: 20px;
		letter-spacing: 1px;
	}
	.model-grids {
		width: 70%;
		margin: 0 auto;
	}
	.mfp-content iframe {
		min-height: 270px;
	}	
	.inner-page-banner h2 {
		font-size: 1.8em;
		padding-top: 3.5em;
	}
	.videoplay1,.videoplay2,.videoplay3,.layer {
		height: 40vw;
	}
	.blogimg,.blogimg1,.blogimg2,.blogimg3,.blogimg4 {
		min-height: 300px;
	}
	.media img {
		width: 28%;
	}
}
@media(max-width:480px){
	.banner-text i {
		font-size: 25px;
		margin: 0px 10px;
	}
	.banner-text {
		padding: 8em 0 0 0;
	}
	.w3_agile_logo a {
		font-size: .8em;
	}
	.banner-text h2 {
		font-size: 36px;
		letter-spacing: 3px;
	}
	.welcome-right h4 {
		font-size: 22px;
		letter-spacing: 1px;
	}
	.videobg p {
		font-size: 80px;
		left: 5%;
	}
	.videobg h4 {
		font-size: 16px;
		letter-spacing: 3px;
	}
	.footer-logo h3 span {
		width: 75%;
	}
	.icon span:before {
		left: 34%;
	}
	.icon span:after {
		right: 34%;
	}
	.inner-page-banner, .banner-dott {
		min-height: 180px;
	}
	.agile_map_grid {
		width: 100%;
		position: static;
	}
	.agile_map_grid1 {
		padding: 2em;
	}
	.map iframe {
		min-height: 250px;
	}
	.contact_right h3 {
		font-size: 20px;
		letter-spacing: 1px;
	}
}
@media(max-width:414px){
	h6.w3l-style {
		position: static;
		transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
	}
	h6.w3l-style:before,h6.w3l-style:after{
		display:none;
	}
	.welcome-right {
		padding-right: 0;
	}
	.welcome-right h4 {
		letter-spacing: 0px;
	}
	.welcome-right a,.welcome-right a.know {
		padding: 10px 25px;
		font-size: 14px;
	}
	.footer-logo h3 span {
		width: 90%;
	}
	.wthree_copy_right p {
		letter-spacing: 2px;
	}
	.mfp-content iframe {
		min-height: auto;
	}		
	.icon span:before {
		width: 40px;
	}
	.icon span:after {
		width: 40px;
	}
	.videoplay1,.videoplay2,.videoplay3,.layer {
		height: 60vw;
	}
	.blog-grid-top h3 {
		font-size: 18px;
		letter-spacing: 0px;
		line-height: 28px;
	}
	.media img {
		width: 36%;
	}
}
@media(max-width:384px){
	.videobg p {
		font-size: 70px;
		left: 5%;
	}
	.w3_agile_logo a {
		font-size: .7em;
	}
	p.stats-info {
		font-size: 0.4em;
	}
	.model-grids {
		width: 80%;
		margin: 0 auto;
	}
	.single p {
		font-size: 0.9em;
		letter-spacing: .5px;
	}
	.contact_right input[type="text"], .contact_right input[type="email"], .contact_right textarea {
		padding: 12px 12px;
		font-size: 14px;
	}
}
@media(max-width:375px){
	.w3_agile_logo h1 span:before {
		width: 35px;
		left: 8%;
	}
	.w3_agile_logo h1 span:after {
		width: 35px;
		right: 8%;
	}
	h3.heading {
		font-size: 30px;
		letter-spacing: 1px;
	}
	.footer-logo h3 span:before {
		left: 8%;
	}
	.footer-logo h3 span:after {
		right: 8%;
	}
	.fashionvideo i {
		font-size: 45px;
	}
	.fashionvideo h4 {
		font-size: 17px;
	}
}
@media(max-width:320px){
	.fashionvideo i {
		margin-top: 1.5em;
	}
}
@media(max-width:1920px){
	
}
@media(max-width:1920px){
	
}
@media(max-width:1920px){
	
}
@media(max-width:1920px){
	
}
@media(max-width:1920px){
	
}

/*-- //Responsive Design --*/








/*------------------------------------Rahul-CSS-Starts-Here---------------------------------------------------------*/


.contact-banner
{
    background: linear-gradient(rgba(41, 38, 41, 0.54), rgba(23, 22, 23, 0.29)), url(../images/map.jpg) no-repeat;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: cover !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 500px;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0 0% 0;
    padding: 50px 0;
}

.enquiry-bck {
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/boats.jpg) no-repeat;
        background-position-x: 0%, 0%;
        background-position-y: 0%, 0%;
        background-attachment: scroll, scroll;
        background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: cover !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 100%;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0 0 0;
}

.srvc-banner
{
    background: linear-gradient(rgba(41, 38, 41, 0.54), rgba(23, 22, 23, 0.29)), url(../images/globe.jpeg) no-repeat;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: cover !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 500px;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0 0% 0;
    padding: 100px 0; 
}


h3.center {
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 2px 2px rgba(0,0,0,.6);
    letter-spacing: 2px;
    color: #333;
    font-family: Showcard Gothic;
}

.book-form-select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: transparent;
    border: none;
        border-bottom-color: currentcolor;
        border-bottom-style: none;
        border-bottom-width: medium;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}
  
  .ui-select {
    width: 100%;
}

.ui-select {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.book-form-select {
    color: #ccc;
    font-size: 15px;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: bold;
    padding: 10px 30px;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

.snd_qry {
    font-size: 21px;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, white 50%, #199cdb 50%);
    transition: background-position 0.3s linear, color 0.3s linear;
    color: #000;
    width: 40%;
    margin: 15px auto;
    padding: 15px 10px;
    border: none;
    display: flex;
}

.snd_qry:hover {
    background-position: -100% 0;
    color: #fff !important;
}

 .booking-txt p {
    color: #fff;
    font-size: 18px;
    margin: 0px;
    padding: 50px 0;
    font-family: finger paint;
    line-height: 35px;
}

 
.booking-txt {

    width: 85%;
    margin: auto;
    padding: 0px;

}

.booking-txt h1 {
    color: #fff;
    font-size: 40px;
    font-family: finger paint;
    line-height: 60px;
    margin: 0px;
    padding: 10px 0px;
    text-align: center;
}

.book-us {
    margin: auto;
    padding: 10px 0px;
    width: 70%;
}

.book-form {
    width: 100%;
    padding: 10px 30px;
    margin: 10px 0;
    background: transparent;
    border: none;
        border-bottom-color: currentcolor;
        border-bottom-style: none;
        border-bottom-width: medium;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    font-style: italic;
}

.footer-txt
{
    margin:0px;
    padding: 10px 0px;
    background: #7710CB;
    text-align: center;
    display: flex;
    border-top: 1px solid #fff;

} 

.footer-txt h2
{
    margin:0px;
    padding:5px 0;
    color: #fff; 
    font-size: 15px;
    letter-spacing: 1px;
    width: 50%;
    font-weight: normal;
}

.footer-txt h2 a
{
    color: #fff;
}

.footer-txt h2 a:hover
{
    text-decoration:underline;
}


.footer-txt h3
{
    margin:0px;
    padding:5px 0;
    color: #fff; 
    font-size: 13px;
    letter-spacing: 1px;
    width: 27%;
    font-weight: normal;

}

.footer-txt h3 a
{
    color: #fff;
}

.footer-txt h3 a:hover
{
    text-decoration:underline;
}

.contact_right.p-lg-5.p-4 {

    width: 80%;
    margin: 0 auto;

}


.cntct-hdng
{
    margin: 0px;
    padding: 0px;
    font-size:40px;
    text-align: center;
    font-family: Showcard Gothic;
    color: #fff;
    letter-spacing: 4px;

}

.contact-banner p
{
    margin: 0px auto;
    padding: 12px 0;
    font-size: 23px;
    color: #fff;
    width: 62%;
    text-align: center;
    font-style: italic;
}

input::placeholder
{
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    font-style: italic;
}

textarea::placeholder
{
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    font-style: italic;
}

option {
    color: #000;
}

.footer-grid h4 {

    color: #fff;
    margin: 0 auto;
    padding: 0;
    font-size: 17px;
    width: 80%;
    text-decoration: underline;

}

.footer-top {

    padding: 50px 0 !important;

}

/*-----------------------------------------------Slider-CSS-START-----------------------------*/
/*
.jssorl-009-spin img
{
    animation-name:jssorl-009-spin;
    animation-duration:1.6s;
    animation-iteration-count:infinite;
    animation-timing-function:linear;
}

@keyframes jssorl-009-spin
{
    from
    {
        transform:rotate(0);
    }
    to
    {
        transform:rotate(360deg);
        }
        }

.jssorb057 .i
{
    position:absolute;
    cursor:pointer
}

.jssorb057 .i .b
{
    fill:none;
    stroke:#fff;
    stroke-width:2000;
    stroke-miterlimit:10;
    stroke-opacity:.4;
}

.jssorb057 .i:hover .b
{
    stroke-opacity:.7
}

.jssorb057 .iav .b
{
    stroke-opacity:1
}

.jssorb057 .i.idn
{
    opacity:.3
}

.jssora073
{
    display:block;
    position:absolute;
    cursor:pointer
}

.jssora073 .a
{
    fill:#ddd;
    fill-opacity:.7;
    stroke:#000;
    stroke-width:160;
    stroke-miterlimit:10;
    stroke-opacity:.7
}

.jssora073:hover
{
    opacity:.8
}

.jssora073.jssora073dn
{
    opacity:.4
}

.jssora073.jssora073ds
{
    opacity:.3;
    pointer-events:none
}


.backg
{
    background: #666;
    padding: 0px 0 10px 0;
}
*/
/*-----------------------------------------------Slider-CSS-END------------------------------*/


.dropbtn {
  background-color: transparent;
  color: white;
   font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fffc;
  min-width: 1076px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin: 1px 0px 0 -373px;
  padding: 30px 23px;
  border: 5px solid #7710CB;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content ul
{
width: 150px;
margin:0px 10px;
padding: 8px 2px;
list-style: none;
float: left;
}

.dropdown-content ul li a
{
  margin: 0px;
  padding: 5px 0px;
  text-align: justify;
  font-size: 13px;  
  color: #000000e6;
  font-weight: normal;
  letter-spacing: 0px;
  text-transform: capitalize;
  display: inherit;
}

.dropdown-content ul li a span
{
    font-size: 40px;
    margin: 0px; 
    padding: 0px 7px 0 1px;
    line-height: 0px;
}

.dropdown-content ul li a:hover
{
    background-color: transparent;
    color: orange;
}

.dropdown-content ul li h4
{
  margin: 0px;
  padding: 2px 12px;
  text-align: justify;
  font-size: 16px;
  text-decoration: underline;
  color: red;  
}

.dropdown-content ul li h6 a
{
  margin: 0 0 0 0;
  padding: 13px 0px 0px 24px;
  text-transform: capitalize;
  color: orange !important;
}
 

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn
{
    background-color: transparent;

}

.dropbtn.menu__link a:hover
{
   color: #fff;
}

.gallery-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../pics/adventure/balloon.jpeg) no-repeat;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: cover !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.egypt-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/africa/egypt/egback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.colombia-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/southamerica/colombia/coback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.austria-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.29), rgba(105, 95, 95, 0.64)), url(../images/europe/austria/austriaback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.bulgaria-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/bulgaria/bulback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.jaisalmer-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../pics/holidays/Jaisalmerfort.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.france-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/france/frback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.ajmer-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/ajmer.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.croatia-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/croatia/crback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.pushkar-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/germany/gerback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.mauritius-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/africa/mauritius/maback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.seychelles-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/africa/seychelles/syback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.southafrica-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/africa/southafrica/saback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.usa-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/northamerica/usa/usback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.canada-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/northamerica/canada/caback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.delhi-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../pics/holidays/indiagate.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.paraguay-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/southamerica/paraguay/prback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.peru-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/southamerica/peru/peback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.bihar-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/hungary/huback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.iceland-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/iceland/iceback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.italy-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/italy/itback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.netherland-banner
{
 background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/netherland/neback.jpg) no-repeat;
 background-size: cover !important;
 height: auto;
 background-position: center;
 background-attachment: fixed;
 margin: 0 0;
 padding: 100px 0; 
}

.russia-banner
{
 background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/russia/ruback.jpg) no-repeat;
 background-size: cover !important;
 height: auto;
 background-position: center;
 background-attachment: fixed;
 margin: 0 0;
 padding: 100px 0; 
}

.spain-banner
{
 background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/spain/spback.jpg) no-repeat;
 background-size: cover !important;
 height: auto;
 background-position: center;
 background-attachment: fixed;
 margin: 0 0;
 padding: 100px 0; 
}

.switzerland-banner
{
 background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/switzerland/swback.jpg) no-repeat;
 background-size: cover !important;
 height: auto;
 background-position: center;
 background-attachment: fixed;
 margin: 0 0;
 padding: 100px 0; 
}

.uk-banner
{
 background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/europe/uk/ukback.jpg) no-repeat;
 background-size: cover !important;
 height: auto;
 background-position: center;
 background-attachment: fixed;
 margin: 0 0;
 padding: 100px 0; 
}

.argentina-banner
{
 background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/southamerica/argentina/arback.jpg) no-repeat;
 background-size: cover !important;
 height: auto;
 background-position: center;
 background-attachment: fixed;
 margin: 0 0;
 padding: 100px 0; 
}


.australia-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/australia/australia/auback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.fiji-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/australia/fiji/fjback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.newzealand-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/australia/newzealand/nzback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.daman-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../city/daman/daman.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.pondicherry-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../city/pondicherry/pondicherry.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.about-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../pics/holidays/amberfort1.jpg) no-repeat;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-size: cover !important;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    height: 700px;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}

.malaysia-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/malaysia/mlback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.chile-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/southamerica/chile/chback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.madagascar-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/africa/madagascar/mdback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}


.himachal-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/6.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.india-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/india/inback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.indonesia-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/indonesia/inback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.japan-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/japan/jaback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.brazil-banner
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/southamerica/brazil/brback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.maldives-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/maldives/malback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.singapore-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/singapore/siback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.thailand-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/thailand/thback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.uae-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/uae/uaeback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}

.advn-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/advn1.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: top;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0; 
}


.tmc-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/tmc.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 100px 0;
}


.gall-hdng h2
{
    color: #fff;
    margin: 0 0 0 0;
    padding: 50px 0 40px 0;
    font-size: 35px;
    text-align: center;
    font-family: Showcard Gothic;
    letter-spacing: 3px;
    text-decoration: none;    
}

.hony-hdng h2
{
    color: #fff;
    margin: 0 0 0 0;
    padding: 90px 0 40px 0;
    font-size: 35px;
    text-align: center;
    font-family: Showcard Gothic;
    letter-spacing: 3px;
    text-decoration: none;    
}

.gall-hdng h2 i
{
     font-size: 70px;
     color: #0ff3db;
}
.adv-hdng h2 i
{
     font-size: 70px;
     color: #f3e11d;
}

.adv-hdng h2 
{
    color: #fff;
    margin: 0 0 0 0;
    padding: 90px 0 40px 0;
    font-size: 35px;
    text-align: center;
    font-family: Showcard Gothic;
    letter-spacing: 3px;
    text-decoration: none;  
}

.hony-hdng h2 i
{
 color: red;
 font-size: 70px;
}

.gall-hdng h2 span
{
    margin: 0 0 0 0;
    padding: 50px 0 40px 0;
    font-size: 90px;
    text-align: center;
    font-family: Showcard Gothic;
    letter-spacing: 3px;
    text-decoration: none;
    background: -webkit-linear-gradient(left, orange , #fff, #6EEF1F);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highslide img
{
    width: 100%;
    height: 200px;
    margin: 15px 0;
}

.ftr-mail {
    margin-bottom: 10px;
}

.clr
{
    margin: 0px;
    padding: 0px;
    line-height: 0px;
    clear: both;
}

.input-group {

    margin-bottom: 12px;
    margin-top: 30px;

}
.footer-form-control {
    height: 36px;
    border: 1px solid #ccc;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: transparent;
    color: #fff;
    width: 73%;
    padding-left: 8px;
}
.input-group-addon:last-child {
    border-left: none;
}

.input-group-addon {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 4px 12px;
    border: 1px solid #ccc;
        border-left-color: rgb(204, 204, 204);
        border-left-style: solid;
        border-left-width: 1px;
    border-left-color: rgb(125, 183, 0);
    border-left-style: solid;
    border-left-width: 1px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background-color: #7db700;
}

.srvc-hdng
{
    width: 100%;
    text-align: center;
    margin: 0 0 0 0;
    padding: 75px 0px 0 0;
}
.srvc-hdng h1
{
  margin:0 0 0 0;
  padding:0 0 0 0;
  font-size: 45px;
  color: #fff;
  text-align: center;
  font-family: Showcard Gothic;
  letter-spacing: 5px;
}

.srvc-bck
{
    margin:0 0 0 0;
    padding:15px;
    background:#ccc;
}

.srvc-txt 
{
    margin:0 0 0 0;
    padding:0 0 0 0;
}

.srvc-txt h4
{
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    color: #000;
    font-size: 42px;
    text-align: center;
    line-height: 25px;
    font-family: forte;
    mix-blend-mode: darken;
    overflow: hidden;

}

.srvc-txt h4 span
{
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    color: #000;
    font-size: 15px;
    text-align: center;
    font-family: verdana;
    overflow: hidden;
    line-height: 15px;
}

.srvc-txt p
{
margin: 0 0px 0 0px;
padding: 150px 33px 0;
text-align: justify;
color: #000;
font-size: 14px;
top: -89px;
position: relative;
mix-blend-mode: darken;
    overflow: hidden;
}
 
.srvc-txt i
{
    margin: 0 0 0 0;
padding: 10px 0px 10px 100px;
font-size: 122px;

}

.srvc1
{
     
    height: 500px;
    background-position: center;
    background-attachment: fixed;
    margin: 50px 0;
    padding: 20px 5px;
    border-radius: 10px;
    overflow: hidden;
    mix-blend-mode: lighten;
    background-color: rgba(255, 255, 255, 0.61);
}

.top-bar
{
    margin:0 0 0 0;
    padding:3px 0;
     width:100%;
    height: 30px;
    overflow: hidden;
    mix-blend-mode: lighten;
    background-color: rgba(255, 255, 255, 0.61);
}

.top-bar p
{
   padding: 0 0 0 65px;
   font-size: 15px;
   color: #000;
   mix-blend-mode: darken;
   overflow: hidden;
 
}

.top-bar p a
{
  color: #000;
}

.top-bar p span
{
  color: #000;
}

.main-hdng
{
   margin: 0 0 0 0;
   padding: 40px 0;
   text-align:center;
}

.main-hdng h1
{
    color: #fff;
    font-size: 50px; 
     font-weight: 600;
    margin: 0px;  
    padding: 15px 0;
    font-family: showcard gothic;
    letter-spacing: 1px;
}

.main-hdng h1 span
{
  color: #f4df00;  
  font-size: 70px;
}

.advn-hdng
{
margin: 0 0 0 auto;
padding: 60px 0 30px;
width: 58%; }

.advn-hdng h1
{
    color: #fff;
    font-size: 40px; 
     font-weight: 600;
    margin: 0px;  
    padding: 15px 0;
    font-family: showcard gothic;
    letter-spacing: 1px;
}

.advn-hdng h1 span
{
  color: #f4df00; 
  font-size:60px; 
}

.advn-txt
{
margin: 0px 0 0 auto;
padding: 0px;
width: 73%;
 }

.advn-txt p
{
    padding: 10px 0;
    font-size: 17px;
    color: #fffc;
}


.advn-txt ul
{
  margin-left: 3.1rem;
  font-size: 1rem;
line-height: 1.6;
margin-bottom: 1.25rem;
list-style-position: outside;
font-family: inherit;
}

.advn-txt ul li
{
    margin: 0px;
    padding: 0px;

}

.advn-txt ul li p
{
    font-family: 'verdana';
color: #fffc;
font-size: 14px;
font-weight: normal;
line-height: 22px;
 }

.advn-txt ul li p a
{
    color: #ff0;
    font-weight: bold;
}

.advn-txt ul li p strong
{
    color: #ff0;
}

.tour-details
{
    width: 1280px;
    margin: 0 auto;
    display: flex;
}

.tour-txt-left
{
  float: left;
  width: 50%;  
  background: #ffffff80;
  padding: 10px 10px;
}

.tour-txt-left h2
{
    text-align: center;
    padding-bottom: 10px;
    color: #394048;
    font-size: 24px;
}

.tour-txt-left p
{
     padding: 0 15px 15px 15px;
     margin: 0 0 0 0;
     text-align: justify;
     font-size: 15px;
     font-weight: 500;
     font-family: verdana;
}

.tour-txt-left p span
{
    font-weight: bold;
}

.tour-txt-left h5
{
    margin: 0 0 0 0;
    padding: 10px 0 0px 15px;
    font-size: 18px;
    font-weight: 600;
}

.tour-txt-left ul
{
    list-style-type: none;
     width: 100%;
    padding: 8px 0 0 0;
    margin: 0;
}

.tour-txt-left ul li
{
    float: left;
width: 206px;
padding-left: 20px;
border-right: 1px solid #dddedf;
padding-bottom: 2px;
background: none;
}

.tour-txt-left ul li h4
{
    font-size: 20px;
}

.tour-txt-left ul li p
{
  font-size: 14px;
}

.tour-txt-left ol {
    margin: 0 0 0 0;
    padding: 10px 0 10px 41px;
}

.tour-txt-left ol li {
    margin: 0 0 0 0;
    padding: 3px 0px;
    list-style: disc;
}

.city-txt2
{
width: 59%;
background: #ffffff80;
padding: 10px 10px;
margin: 0px 0 30px 39%;
}

.city-txt2 p
{
    padding:15px 15px;
margin: 0 0 0 0;
text-align: justify;
font-size: 16px;
font-weight: 500;
font-family: verdana;
}


.tour-pic-right
{
  float: left;
  width: 50%;
 }

.tour-pic-right h3
{
    margin: 5px 0 0 30px;
    padding: 0 0 0 0px;
    font-size: 22px;
    color: #fffc;
    font-family: finger paint;
}

.tour-pic-right ul
{

}

.tour-pic-right ul li
{
    float: left;
    width: 300px;
    margin:10px 10px;
    padding:0 0 0 0;
    list-style: none;
}

.tour-pic-right ul li a img
{

}


*{
  box-sizing: border-box;
}

.zoom {
  padding: 50px;
  transition: transform 0.5s;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2) ; 
}

.city-name
{

}

.city-txt h2 {
    text-align: center;
    font-size: 25px;
    margin: 0 auto;
    width: 90%;
}


.city-name h3
{
    position: relative;
    top: -70px;
    font-family: verdana;
    font-weight: bold;
    margin: 0 auto;
    color: #fff;
    text-shadow: 2px 2px 1px #000;
    width: 50%;  
    font-size: 17px;
    text-align: center; 
}

.city-txt
{
 width: 70%;
background: #ffffff80;
padding: 10px 10px;
margin: 0px auto 20px;
}

.city-txt p
{
    padding:15px 15px;
margin: 0 0 0 0;
text-align: justify;
font-size: 16px;
font-weight: 500;
font-family: verdana;
}

.city-hdng
{
margin: 0 0 0 0;
padding: 36px 0;
text-align: center;
}

.city-hdng p
{
    color: #fff;
font-size: 32px;
font-weight: 600;
margin: 0px;
padding: 15px 0;
font-family: showcard gothic;
letter-spacing: 1px;
}

.city-hdng p span
{
    color: #f4df00;
}

.hvrbox-text h4 {

    text-align: center;
    font-family: showcard gothic;
    letter-spacing: 2px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;

}
 
 
#owl-demo .item
{
  padding: 30px 0px;
  margin: 10px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

 
.item img
{
    width: 100%;
    height: 300px !important;
}

.item h6 {

    color: #000;
    font-size: 20px;
    padding: 6px 0;
    text-align: center;
    background: #ff0;
    font-weight: 600;
    font-family: finger paint;
    letter-spacing: 0px;
    text-transform: capitalize;

}

.main-slider
{
     background: linear-gradient(rgba(200, 196, 196), rgba(255, 255, 255, 0.73)), url(../images/6.jpg) no-repeat;
    background-size: cover !important;
    height: 680px;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0;
    padding: 60px 0 0 0;
}


.home-back
{
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/back.jpg) no-repeat;
    background-size: cover !important;
    height: 600px;
    background-position: center;
    background-attachment: fixed;
    margin: 0 0 30px 0;
    padding: 0px 0 0 0;

}

 

.main-slider h1
{
    margin:0px;
    padding:7px 0;
    color: #2658ae;
    text-align: center;
    width: 100%;
    text-transform: capitalize;
     font-size: 40px;
    font-family: verdana;
    background: -webkit-linear-gradient(left, yellow, red);
    background-clip: border-box;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.service-txt {

    text-align: center;
    font-size: 40px;
    margin: 0px;
    padding: 40px 0px 70px;
    font-family: verdana;
    background: -webkit-linear-gradient(left, #ff0, red);
        background-clip: border-box;
    background-clip: border-box;
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.services {
    background: linear-gradient(rgba(105, 95, 95, 0.64), rgba(105, 95, 95, 0.64)), url(../images/asia/uae/uaeback.jpg) no-repeat;
    background-size: cover !important;
    height: auto;
    background-position: center;
    background-attachment: scroll;
    padding: 100px 0; 
    margin: 0px 0;
}

.welcome-left img {

    height: auto;
    width: 100%;

}

.home-txt
{
    margin:0px;
    padding:0px;
}

.home-txt h2
{
     
    mix-blend-mode: lighten;
overflow: hidden;
background-color: rgba(255, 255, 255, 0.85);
text-transform: uppercase;
margin: 0;
font-weight: 900;
color: #000;
padding-left: 10%;
padding-right: 10%;
text-align: center;
font-size: 34px;
}

.pd-top
{
    padding-top: 100px;
}

.pd-bot
{
    padding-bottom: 100px;
    font-size: 155px !important;
 }

 .txt-sze
 {
    font-size: 80px !important;
    padding: 6px 10% !important;
 }

 .txt-sze1
 {
    font-size: 55px !important;
 }

.txt-right
{
    width:50%;
    height: 100%;
}

.txt-left
{
    width:50%;
     padding: 103px 80px 40px;
}

.tc-txt2 {
    margin: 20px 0;
    padding: 0 0 0 0;
}

.tc-txt2 p {
    margin: 20px 0;
    padding: 10px 163px;
    font-size: 40px;
    font-family: verdana;
    font-weight: 500;
    line-height: 55px;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    border-bottom: 5px solid #ccc;
    text-transform: uppercase;
    color: #fff;
}

.tc-txt {
    margin: 0 0 0 0;
    padding: 0px 20px;
}

.tc-txt h3 {
    margin: 0 0 0 0;
    padding: 20px 0 5px 0;
    color: #fff;
    font-size: 15px;
    font-family: verdana;
    font-weight: 503;
}

.tc-txt h4 {
    margin: 0 0 0 0;
    padding: 6px 0 6px 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    font-family: verdana;
    text-align: justify;
    line-height: 22px;
}

.tc-txt ul {
    margin: 0 0 0 0;
    padding: 0px 0 0px 30px;
}

.tc-txt ul li {
    margin: 0 0 0 0;
    padding: 5px 0 5px 0;
    text-align: justify;
    list-style: none;
    color: #fff;
    font-weight: 400;
    font-family: verdana;
    font-size: 13px;
}

.tc-txt1 {
    margin: 20px 0;
    padding: 0 0 0 0;
}

.tc-txt1 p {
    margin: 20px 0;
    padding: 10px 163px;
    font-size: 20px;
    font-family: verdana;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    border-top: 5px solid #ccc;
    color: #fff;
}
 
.about-bottom {
    margin: 59px 0 0 0;
}
 






/*-----------------------------------Rahul-Responsive-CSS------------------------------------------------*/



@media (min-width:320px) and (max-width:720px)
{

h6.w3l-style
{
    font-size: 12px;
    padding: 6px;
    float: left;
}

.stats
{
    padding: 0px 0 0px 0;
}

.about-bottom 
{
    margin: 40px 0 0 0;
}
 .dropdown-content
{
 background-color: #ccc;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 313px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin: 1px 0px 0 -115px;
  padding: 10px 20px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content ul
{
width: 87px;
margin:0px 0px;
padding: 8px 9px;
list-style: none;
float: left;
height: auto;
}

.dropdown-content ul li a
{
  margin: 0px;
  padding: 0px 0px;
  text-align: justify;
  font-size: 9px;  
  color: #000000e6;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: capitalize;
  display: inherit;
}

.dropdown-content ul li a span
{
    font-size: 14px;
    margin: 0px; 
    padding: 0px 3px 0 0px;
    line-height: 0px;
}

.dropdown-content ul li a:hover
{
    background-color: transparent;
    color: orange;
}

.dropdown-content ul li h4
{
  margin: 0px;
  padding: 2px 0px;
  text-align: justify;
  font-size: 12px;
  text-decoration: underline;
  color: red;  
}

.dropdown-content ul li h6 a
{
  margin: 0 0 0 0;
  padding: 5px 0px 0px 10px;
  text-transform: capitalize;
  color: orange !important;
}
 
.w3_agile_logo a
{
    font-size: 15px;
}

.w3_agile_logo h1 span
{
    font-size: 6px;
}

.w3_agile_logo h1 span::before
{
 width: 16px;
left: 1%;
}

.w3_agile_logo h1 span::after
{
    width: 20px;
right: 0%;
bottom: 26%;
}

.m_nav_item
{
    margin:0px; 
}

.m_nav_item a
{
    font-size: 10px;
}

.welcome {
    padding: 0px !important;
}

h3.heading {
    font-size: 19px;
    letter-spacing: 1px;
}

p.welcome-para
{
    line-height: 16px;
    font-size: 12px !important;
}

.stats-grid
{
    font-size: 20px;
}

.welcome-left img
{
    height: auto;
}

h5.w3l-style
{
    bottom: 102%;
    right: 49.5%;
    padding: 6px 6px;
    font-size: 12px;
}

h5.w3l-style::before
{
    width: 22px;
}

h5.w3l-style::after
{
    width: 25px;
}


 .welcome-right {
    padding-right: 0;
    padding: 0 0 24px 0;
}



.main-slider h1
{
    width: 100%;
    font-size: 20px;
    padding: 0px 0;
}

#owl-demo .item img
{
    height: auto !important;
}

.main-slider
{
    height: 550px;
}

.service-txt
{
    padding: 0px 0px 25px;
    font-size: 22px;
}

.service-grid1 h4
{
    font-size: 12px;
}

.service-grid1 h4 span
{
    font-size: 11px;
}

.service-grid1 p
{
    font-size: 12px;
    line-height: 17px;
}

.txt-left {

    width: 100%;
    padding: 30px 0;
    display: flex;

}

.txt-right {

    width: 100%;
    height: 100%;

}

.home-txt h2
{
    font-size: 35px;
}

.pd-top
{
    padding-top: 60px;
}

.pd-bot {

    padding-bottom: 60px;
    font-size: 26px !important;

}

.footer-top {
    padding: 20px 0 !important;
}

.footer-logo h3 span {
    width: 100%;
}

.footer-logo h3 span::after
{
    width: 20px;
    bottom: 45%;
}
.footer-logo h3 span::before
{
    width: 20px;
}

.footer-logo h3 span
{
    font-size: 10px;
}

.footer-grid p
{
    font-size: 10px;
    line-height: 14px;
}

.footer-logo .social i
{
    width: 22px;
    height: auto;
    line-height: 0px;
    font-size: 10px;
}

.footer-grid ul li
{
    line-height: 17px;
}

.footer-grid h5
{
    width: 100%;
    margin: 10px 0 0px 0;
    font-size: 20px;

}
 
.footer-grid h4
{
    margin: 6px auto;
}

.footer-grid ul li a
{
    font-size: 11px;
}

.footer-form-control
{
    width: 60%;
}

.footer-txt
{
    display: block;
}

.footer-txt h3
{
    width: 100%;
}

.footer-txt h2
{
    width: 100%;
}

.top-bar
{
    height: 18px;
    padding:0px;
}

.top-bar p
{
    font-size: 10px;
    padding:0 0 0 15px;
}

.main-hdng h1
{
    font-size: 20px;
}

.main-hdng
{
    padding:20px 0;
}

.city-txt 
{
    width: 100%;
    padding: 10px 10px;
    margin: 0px;
}

.city-txt h2
{
    font-size: 15px;
    width: 100%;
}

.city-txt p
{
    padding: 10px;
    font-size: 11px;
}

.city-hdng p
{
    font-size: 18px;
}

.city-hdng
{
    padding: 13px 0;
}

.hvrbox-text h4
{
    font-size: 20px;
}

.advn-back
{
    background-position: left;
}

.advn-hdng {
    margin: 0 0 0 auto;
    padding: 30px 0 22px;
    width: 100%;
}

.advn-hdng h1
{
    font-size: 30px;
    padding:15px;
}

.city-txt2
{
    width: 100%;
    margin: 0px 0 30px 0%;
}

.city-txt2 p
{
    font-size: 12px;
}

.advn-txt
{
    width: 100%;
}

.advn-txt p
{
    font-size: 14px;
}

.advn-txt ul
{
    
 margin-left: 2.1rem;
}

.advn-txt ul li p
{
    font-size: 13px;
    line-height: 20px;
}

.srvc-hdng h1
{
 font-size: 30px;
}

.srvc-hdng
{
    padding: 30px 0px 0 0;
}
.srvc-txt i
{
    font-size: 50px;
}

.srvc-txt h4
{
    font-size: 25px;
}

.srvc-txt h4 span
{
    font-size: 10px;
}

.srvc-txt p
{
    padding: 0px 5px 0;
    top: 15px;
}

.srvc1
{
    height: 418px;
}

.gall-hdng h2
{
    font-size: 20px;
    padding: 20px 0 25px 0;
}

.hony-hdng h2
{
    font-size: 20px;
    padding: 56px 0 40px 0;
}

.adv-hdng h2
{
    font-size: 20px;
    padding: 55px 0 40px 0;
}
.contact_right.p-lg-5.p-4 {
    width: 100%;
    margin: 0 auto;
}

.contact_right input[type="submit"]
{
    width: 60%;
    padding: 8px 4px;
}

.contact-banner p
{
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
}

.booking-txt h1
{
    font-size: 25px;
    line-height: 37px;
}

.book-us
{
    width: 100%;
}

.snd_qry
{
    width: 85%;
    margin: 15px auto;
    padding: 7px 10px;
}

.booking-txt
{
    width: 100%;
}

.booking-txt p
{
    font-size: 14px;
    line-height: 22px;
}


.dropbtn.menu__link {
    padding: 0px;
}













}







