

/* GLOBALS */
/*Dropdown1 start*/

.wrapper-dropdown-1 {
    /* Size and position */
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    padding: 10px;
    margin: 0 auto;

    /* Styles */
    outline: none;
    cursor: pointer;
	
	float:left; border-right:1px solid #D2D2D2; width:23%; font-family:'futura_lt_btlight'; font-weight:bold; text-transform:uppercase; font-size:13px; background:#e9e9e9;
}

.wrapper-dropdown-1:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #000;    
}

.wrapper-dropdown-1 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    list-style: none;
    font-weight: normal; /* Cancels previous font-weight: bold; */

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-1 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9e9e9e;
    padding: 10px 20px;
}

/* Hover state */
.wrapper-dropdown-1 .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */
.wrapper-dropdown-1.active .dropdown {
    opacity: 1;
    pointer-events: auto;
	z-index:9;
}

.wrapper-dropdown-1.active:after {
    border-color: #000 transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown-1.active {
  background: #000;
  color:#fff;
  background: -moz-linear-gradient(left,  #000 0%, #000 78%, #e9e9e9 78%, #e9e9e9 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e9e9e9), color-stop(78%,#e9e9e9), color-stop(78%,#ffffff), color-stop(100%,#ffffff));
  background: -webkit-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -o-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -ms-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: linear-gradient(to right,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#ffffff',GradientType=1 );
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-1 .dropdown,
.no-pointerevents .wrapper-dropdown-1 .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-1.active .dropdown,
.no-pointerevents .wrapper-dropdown-1.active .dropdown {
    display: block;
}

/*Dropdown1 end*/



/*Dropdown2 start*/


.wrapper-dropdown-2 {
    /* Size and position */
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    padding: 10px;
    margin: 0 auto;

    /* Styles */
    outline: none;
    cursor: pointer;
	
	float:left; border-right:1px solid #D2D2D2; width:23%; font-family:'futura_lt_btlight'; font-weight:bold; text-transform:uppercase; font-size:13px; background:#e9e9e9;
}

.wrapper-dropdown-2:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #000;    
}

.wrapper-dropdown-2 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    list-style: none;
    font-weight: normal; /* Cancels previous font-weight: bold; */

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-2 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9e9e9e;
    padding: 10px 20px;
}

/* Hover state */
.wrapper-dropdown-2 .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */
.wrapper-dropdown-2.active .dropdown {
    opacity: 1;
    pointer-events: auto;
	z-index:9;
}

.wrapper-dropdown-2.active:after {
    border-color: #000 transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown-2.active {
  background: #000;
  color:#fff;
  background: -moz-linear-gradient(left,  #000 0%, #000 78%, #e9e9e9 78%, #e9e9e9 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e9e9e9), color-stop(78%,#e9e9e9), color-stop(78%,#ffffff), color-stop(100%,#ffffff));
  background: -webkit-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -o-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -ms-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: linear-gradient(to right,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#ffffff',GradientType=1 );
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-2 .dropdown,
.no-pointerevents .wrapper-dropdown-2 .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-2.active .dropdown,
.no-pointerevents .wrapper-dropdown-2.active .dropdown {
    display: block;
}


/*Dropdown2 end*/



/*Dropdown3 start*/


.wrapper-dropdown-3 {
    /* Size and position */
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    padding: 10px;
    margin: 0 auto;

    /* Styles */
    outline: none;
    cursor: pointer;
	
	float:left; border-right:1px solid #D2D2D2; width:23%; font-family:'futura_lt_btlight'; font-weight:bold; text-transform:uppercase; font-size:13px; background:#e9e9e9;
}

.wrapper-dropdown-3:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #000;    
}

.wrapper-dropdown-3 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    list-style: none;
    font-weight: normal; /* Cancels previous font-weight: bold; */

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-3 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9e9e9e;
    padding: 10px 20px;
}

/* Hover state */
.wrapper-dropdown-3 .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */
.wrapper-dropdown-3.active .dropdown {
    opacity: 1;
    pointer-events: auto;
	z-index:9;
}

.wrapper-dropdown-3.active:after {
    border-color: #000 transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown-3.active {
  background: #000;
  color:#fff;
  background: -moz-linear-gradient(left,  #000 0%, #000 78%, #e9e9e9 78%, #e9e9e9 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e9e9e9), color-stop(78%,#e9e9e9), color-stop(78%,#ffffff), color-stop(100%,#ffffff));
  background: -webkit-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -o-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -ms-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: linear-gradient(to right,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#ffffff',GradientType=1 );
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-3 .dropdown,
.no-pointerevents .wrapper-dropdown-3 .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-3.active .dropdown,
.no-pointerevents .wrapper-dropdown-3.active .dropdown {
    display: block;
}


/*Dropdown3 end*/



/*Dropdown4 start*/


.wrapper-dropdown-4 {
    /* Size and position */
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    padding: 10px;
    margin: 0 auto;

    /* Styles */
    outline: none;
    cursor: pointer;
	
	float:left; border-right:1px solid #D2D2D2; width:23%; font-family:'futura_lt_btlight'; font-weight:bold; text-transform:uppercase; font-size:13px; background:#e9e9e9;
}

.wrapper-dropdown-4:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #000;    
}

.wrapper-dropdown-4 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* Styles */
    background: #fff;
    list-style: none;
    font-weight: normal; /* Cancels previous font-weight: bold; */

    /* Hiding */
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-4 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9e9e9e;
    padding: 10px 20px;
}

/* Hover state */
.wrapper-dropdown-4 .dropdown li:hover a {
    background: #f3f8f8;
}

/* Active state */
.wrapper-dropdown-4.active .dropdown {
    opacity: 1;
    pointer-events: auto;
	z-index:9;
}

.wrapper-dropdown-4.active:after {
    border-color: #000 transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown-4.active {
  background: #000;
  color:#fff;
  background: -moz-linear-gradient(left,  #000 0%, #000 78%, #e9e9e9 78%, #e9e9e9 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e9e9e9), color-stop(78%,#e9e9e9), color-stop(78%,#ffffff), color-stop(100%,#ffffff));
  background: -webkit-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -o-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: -ms-linear-gradient(left,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  background: linear-gradient(to right,  #000 0%,#000 78%,#e9e9e9 78%,#e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#ffffff',GradientType=1 );
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-4 .dropdown,
.no-pointerevents .wrapper-dropdown-4 .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-4.active .dropdown,
.no-pointerevents .wrapper-dropdown-4.active .dropdown {
    display: block;
}


.social ul{ width:35%; height:auto; margin-left:10px; background:#fff;}
.social li { list-style:none; display:inline-block;}
/*Dropdown4 end*/

.maxwidth600 {
	max-width:600px;
}

/* By Devender */

.custom-message-newsletter {
    position: fixed;
    left: calc(50% - 0px);
    top: 50%;
    z-index: 9999;
   /* background: #e74539;*/
    background-image: linear-gradient(to right, #434343 0%, black 100%);
    padding: 20px 20px 30px 20px;
    border: 5px solid #fff;
    animation: newsmsg 2s forwards;
    transform: translate(-50%, -50%);
    width: 320px;
    color: #fff;
    text-align: center !IMPORTANT;
    box-shadow: 0px 0px 10px #000;
}
@keyframes newsmsg{
    from{top:45%;left:calc(50% - 0px);opacity:0;}
    to{top:50%;left:calc(50% - 0px);opacity:1;}
}
@keyframes newsmsg_hide{
    from{right:0%;}
    to{right:-100%;}
}

.custom-aclass-tabs {
    text-align: center;
    padding: 10px 0px;
}

.newtabs {
    border: none;
    background: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    font-size: 20px;
    margin: 0px 10px;
}
.tabcontebt{
 display:none;   
}
.tabcontent {
  display: none;
}
.tablinks.active {
    background: #000 !IMPORTANT;
    color: #fff;
}
.newtabs{
 cursor:pointer;   

}
.newtabs:focus{
 outline:none;   

}
.imgbdr1 h2 {
    font-size: 15px;
    font-family: 'open_sansregular';
    text-align: center;
    line-height: 22px;
    padding-top: 5px;
    font-weight: 400;
    color:#000;
}
.imgdiv a {
    text-decoration: none !IMPORTANT;
}


.custom-message-newsletter i {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor:pointer;
}
.custom-message-newsletter i:hover {
    color:#e74135;
}
.custom-message-newsletter img {
    width: 90px;
    position: relative;
    display: block;
    margin-bottom: 20px;
}
.copyrightleft {
    float: left !important;
}
.innercontainer .mediarelease ul li .content p {
    font-size: 14px;
    color: #838383;
    padding: 0;
    text-transform: none;
    line-height: 18px;
}
.mediarelease.custom_newsletter img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}


ul.corporate_videos li {
    width: 50% !important;
    display: inline-block;
    margin: 0;
    border-bottom: inherit;
}

ul.corporate_videos li iframe {
    width: 100%;
}
.contact-container .social li  a {
    color: #000 !important;
}

.contact-container .social li a i {
    color: #000 !important;
}

.footersub .icons_class a i {
    color: #000 !important;
}
h3.title a {color: #000;}

h3.title {
    color: #000;
    text-decoration: none;
}

.journey-div a {
    text-decoration: none;
}
div#header-img img {
    width: 100%;
}
div#header-img .slide-body {
    margin-top: 56px;
}
.ad-image {
    height: 290px !important;
    width: 700px !important;
    top: 0px !important;
    border: none !important;
    outline: none !important;
}
.ad-image img {
    height: 290px !IMPORTANT;
    width: 100%;

}
.ad-gallery {
    margin-top: 40px !important;
}
.livepreview-thumb  p {
    text-align: left;
}
.testbx {
    position: relative;
}
.testbx {
    background: #f3f3f3;
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 40px;
}
.testbx p {
    font-size: 20px;
}
.testbx i.fas.fa-quote-right {
    color: #7a6147;
}
.testbx img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.testbx video {
    outline: none;
}
.testbx p i.fas.fa-quote-left {
    left: 0px;
    top: -5px;
}
i.fas.fa-quote-left {
    font-size: 1rem;
}
.testbx p i {
    font-size: 23px;
    position: relative;
    color: #7a6147;
}
.contact-container .social li .envlop {
    filter: brightness(0) !important;
}
p.thnku {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
}
/*.icons_class a {
    filter: grayscale(100%);
}

.icon-button twitter:hover{
    filter: grayscale(100%);
}
.icon-button:hover .icon-twitter, .icon-button:hover .icon-facebook, .icon-button:hover .instagram, .icon-button:hover .youtube, .icon-button:hover .twitter {
    color: white;
    filter: grayscale(100%);
}

*/

.innercontainer .blog_contentt p img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
}