/*
Theme Name: Advance Your Reach
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Seventeen brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyseventeen
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/


/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/


/* Common Css */

html {
    font-size: 16px;
}

body {
    font-family: 'Helvetica';
    font-weight: normal;
    overflow-x: hidden;
}

:focus,
:hover {
    text-decoration: none !important;
    outline: none !important;
}

a {
    transition: all 0.2s linear;
}

a:hover,
a:focus,
a:active {
    color: #FFF !important;
    text-decoration: none;
    outline: none;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.375rem;
}

h3 {
    font-size: 1.125rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.75rem;
}

h6 {
    font-size: 0.625rem;
}


/* Margin CSS */

.mb0 {
    margin-bottom: 0 !important;
}


/* Pading CSS */

.pb0 {
    padding-bottom: 0 !important;
}

.ptb30 {
    padding: 30px 0;
}

.ptb40 {
    padding: 40px 0;
}


/* Font Family Css */

.font-hb {
    font-family: 'Helvetica-Bold';
}

.font-hn {
    font-family: Helvetica;
}

.font-hlo {
    font-family: 'Helvetica-LightOblique';
}


/* Font Size Css */

.fs12 {
    font-size: 0.75rem !important;
}

.fs14 {
    font-size: 0.875rem !important;
}

.fs16 {
    font-size: 1rem !important;
}

.fs20 {
    font-size: 1.25rem !important;
}

.fs22 {
    font-size: 1.375rem !important;
}

.fs24 {
    font-size: 1.5rem !important;
}


/* Header Css */

.header-wrap {
    padding: 18px 0;
    background-color: transparent;
}

.header-wrap.white-overlay {
    background-color: rgba(255, 255, 255, 0.95);
}

#primary-menu-content>li {
    display: inline-block;
    list-style: none;
}

#primary-menu-content>li+li {
    margin-left: 20px;
}

#primary-menu-content>li>a {
    text-transform: uppercase;
    font-family: 'Helvetica';
}

#primary-menu-content>li>a:hover,
#primary-menu-content>li>a:focus,
#primary-menu-content>li>a:active,
#primary-menu-content>li.current-menu-item>a {
    color: #fff;
}

#primary-menu-content {
    margin: 0;
    padding: 0;
}

.icon-bar {
    display: block;
}

.icon-bar>span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #0f0d34;
}

.icon-bar>span+span {
    margin-top: 5px;
}

.container-wrap {
    position: relative;
}

.logo-wrap {
    position: relative;
}

.logo-wrap img {
    max-width: 200px
}

@media screen and (max-width:1199px) {
    #primary-menu-content>li+li {
        margin-left: 15px;
    }
}

@media screen and (max-width: 991px) {
    .menu-col {
        min-width: 100%;
    }
    #primary-menu-content {
        margin: 12px 0 12px;
        background: transparent;
    }
    #primary-menu-content>li {
        display: block;
        text-align: center;
        padding: 8px 4px;
        margin: 0 !important;
    }
}


/* Responsive Header CSS */

svg.hamburger {
    overflow: visible;
    fill: #fff;
    position: absolute;
    max-width: 40px;
    top: 50%;
    left: 50%;
    /* -webkit-transform: translate(-50%, -50%); */
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

div#nav-icon {
    height: 50px;
    width: 50px;
    position: relative;
    cursor: pointer;
    padding: 0;
    border: 0;
    outline: 0;
}

#nav-icon .hamburger [class^="hamburger-bar"] {
    -webkit-transition: .25s ease;
    -o-transition: .25s ease;
    transition: .25s ease;
}

#nav-icon .hamburger .hamburger-bar-center-1,
#nav-icon .hamburger .hamburger-bar-center-2 {
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

#nav-icon.active .hamburger .hamburger-bar-center-1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon.active .hamburger .hamburger-bar-center-2 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon.active .hamburger-bar-top {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}

#nav-icon.active .hamburger-bar-bottom {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
}

.mobile-menu-wrap {
    display: none;
}

@media screen and (max-width: 991px) {
    #primary_menu {
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        transform: translateY(100%);
        padding-right: 0;
        text-align: center;
        background: rgba(0, 0, 0, 0.95);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: .25s ease;
        -o-transition: .25s ease;
        transition: .25s ease;
    }
    .active #primary_menu {
        bottom: -18px;
        visibility: visible;
        opacity: 1;
    }
    .mobile-menu-wrap {
        display: block;
    }
    .video-banner iframe {
        max-width: 100%;
    }
}


/*sticky Menu CSS */

header#top {
    background-color: transparent
}

.home header#top {
    position: absolute;
    width: 100%;
    z-index: 9999;
    background: transparent;
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
    -ms-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    top: 0
}

.home #top.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #000;
}

.home.admin-bar #top.sticky {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .home.admin-bar #top.sticky {
        top: 46px;
    }
}

@media screen and (max-width:600px) {
    .home.admin-bar #top.sticky {
        top: 0px;
    }
}

#return-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #eadac9;
    border: 1px solid #000;
    padding: 2px;
}

#return-to-top>span {
    background: #000;
    display: block;
    text-align: center;
    line-height: 34px;
    color: #fff;
}

#return-to-top>span>i {
    transform: scale(2);
    position: relative;
    top: -1px;
}

@media screen and (min-width: 1200px) {
    #bottom .container-wrap {
        max-width: 85%;
        margin: auto;
    }
}


/* Return to top */

#return-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #eadac9;
    border: 1px solid #000;
    padding: 2px;
    z-index: 9999;
}

#return-to-top>span {
    background: #000;
    display: block;
    text-align: center;
    line-height: 34px;
    color: #fff;
}

#return-to-top>span>i {
    transform: scale(2);
    position: relative;
    top: -1px;
}


/* Certified Partners Section */

.fig-wrap {
    max-width: 180px;
    margin-right: 2.2rem;
}

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

.certified-partners {
    margin: 30px 0;
}

.tim-name {
    font-weight: 700;
    color: #002f5e;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.4rem;
}

.info-wrap p {
    margin: 0;
}

.info-wrap {
    align-content: center;
    align-items: center;
}

.font-normal {
    font-style: normal !important;
}

.para-text {
    color: #002f5e;
    padding-top: 22px;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-blue>a,
.btn-blue>button {
    background-color: #002f5e !important;
    background-image: none !important;
    padding: 14px 24px 12px !important;
    border: 4px solid #002f5e !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    font-size: 1.1rem !important;
    color: #fff !important;
    letter-spacing: 2px;
    box-shadow: 4px 4px 10px 0px #7d7d7d !important;
}

.btn-blue>a:hover,
.btn-blue>button:hover {
    border-color: #001e3a !important;
    background-color: transparent !important;
    color: #001e3a !important;
}

.cf-partner {
    font-family: 'Arial', sans-serif;
}

.contact-lists>li>a {
    color: #fff;
    font-size: 1.2rem;
}

.contact-lists>li {
    padding: 0 16px;
    position: relative;
    line-height: 1;
}

.contact-lists {
    margin: 0 -16px;
}

.contact-lists>li:not(:last-of-type) {
    border-right: 2px solid #fff;
}

.contact-lists>li>a:hover {
    opacity: 0.7;
}

.text-br {
    line-height: 1.4;
    font-size: 0.9rem;
}

.font-lg {
    font-family: 'Lucida Grande' !important;
}

.box-text-wrap {
    margin: 0 !important;
    height: 100%;
    background: #00305e;
    color: #fff;
    padding: 20px;
}

.d-flex .vc_column-inner>.wpb_wrapper {
    height: 100% !important;
}

.d-flex .vc_column-inner:after,
.d-flex .vc_column-inner:before {
    display: none;
}

.d-flex .vc_column-inner {
    padding: 0 !important;
    height: 100% !important;
}

.full-width-image {
    margin: 0 !important;
    background: #fff;
    height: 100%;
}

h2.section-title.above-img {
    position: absolute;
    bottom: 17px;
    left: 20px;
    color: #fff;
    font-size: 2.8rem;
    max-width: 50%;
    line-height: 1.2;
    font-family: 'Helvetica-Bold' !important;
}

.full-width-image * {
    height: 100% !important;
    width: 100% !important;
}

@media screen and (max-width:767px) {
    .full-width-image *,
    .d-flex .vc_column-inner>.wpb_wrapper {
        height: auto !important;
    }
    .box-text-wrap {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .d-flex .vc_column-inner>.wpb_wrapper {
        -webkit-box-orient: vertical!important;
        -webkit-box-direction: normal!important;
        -ms-flex-direction: column!important;
        flex-direction: column!important;
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }
    .contact-lists>li {
        margin-bottom: 10px;
    }
    .mobile-text-align-center {
        text-align: center !important;
    }
    .tim-name,
    .speaking-title {
        font-size: 3rem !important;
    }
}

.admin-bar.home header#top {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar.home header#top {
        top: 46px;
    }
}

@media screen and (max-width: 1199px) {
    #dctr-desc-sec {
        background-position: left !important;
        background-image: url('images/plain-bg.png') !important;
    }
}


/*
* Date: 5th June, 2018
* By: Hinal Vaghani
*/

.wp-video {
    margin: auto;
}

.fake-container {
    height: 0;
}


/*VIDEO CSS 
date - 7-jun-2018
By: binal*/
#my_video_1{
    width: 100%;
    height: 100%;
}
.video-js .vjs-tech {
    position: relative !important;
    display: block;
}
.video-js .vjs-big-play-button {
     outline: none;
    top: 50% !important;
    left: 50% !important;
    margin-top: -0.75em;
    margin-left: -1.5em;
    /* display: none; */
}