/**
 * 1.0 - Page Builder
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-style: inherit;
    font-weight: normal;
    margin: 0;
    padding: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html, body{
    width:100%;
    height: 100%;
    font-size: 100%;
    line-height:1.3;
    background-color: #fff;
}

body{
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    color: #3f3e3e;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

p{
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}
p ~ p{
    padding-top: 20px;
}

ul{
    margin: 0;
    padding: 0;
}

li{
    list-style: none;
}

h1{
    font-weight: 500;
    font-family: 'Roboto';
    color: #ffffff;
    font-size: 60px;
    line-height: 1.3;
    letter-spacing: 0px;
}

h2{
    font-weight: 400;
    font-family: 'Roboto';
    color: #212b51;
    font-size: 42px;
    line-height: 1.3;
    padding-bottom: 30px;
}

h3{
    font-weight: 400;
    font-family: 'Roboto';
    color: #212b51;
    font-size: 20px;
    line-height: 1.3;
    padding-bottom: 20px;
}

h4{
    font-weight: 400;
    font-family: 'Roboto';
    color: #212b51;
    font-size: 16px;
    line-height: 1.3;
}

h5{
}

h6{
}

a:hover, a:active, a:link{
    text-decoration: none;
}
a:focus{
    outline: none;
}
strong{
    font-family: 'Roboto';
    font-weight: 700;
}
i{
    color: #a10532;
}

/* For 5 columns */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}
#wrapper{
    overflow: hidden;
}
.section-padding{
    padding-top: 75px;
    padding-bottom: 75px;
}
.dash {
    width: 45px;
    height: 2px;
    background-color: #a10532;
    position: relative;
    left: 44%;
}
.contact-content p ~ p,
.contact-form p ~ p{
    padding-top: 0;
}
/*Page sub heading*/
.page-sub-heading p{
    font-family: 'HelveticaLTStd-Bold';
    font-size: 36px;
    color: #333333;
    line-height: 1.37;
}
/*Hover color change*/
.navbar-default .navbar-nav > li > a:hover,
.about-box p a:hover,
.contact-detail-content ul li a:hover,
.news-content h2:hover,
.news-recent h3:hover,
.visa-listing-box:hover h3,
.visa-listing-box a:hover,
#visa-content a:hover{
    color: #a10532;
    transition: color 0.5s ease;
}
/**
 * 1.1 - Form CSS
 */
select,
textarea,
input[type="text"],
input[type="email"],
input[type="button"],
input[type="tel"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
    outline:0;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

/**
 * 1.2 - Primary CSS
 */
 /*Banner*/
#home-banner{
    min-height: 600px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    position: relative;
}
.banner-content-table {
    position: relative;
    width: 100%;
    height: 600px;
    display: table;
    z-index: 99;
}
.banner-content-tablecell{
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
}
.banner-overlay {    
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
    z-index: 3;
}
#page-banner{
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    position: relative;
}
/*Button*/
a.button-white, a.button-red, input[type="submit"]{
    background-color: transparent;
    font-family: 'HelveticaLTStd-BoldCond';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    border: 3px solid #a10532;
    color: #fff;
    padding: 15px 55px;
    margin-top: 25px;
    position: relative;
    transition:  all 0.4s ease-in-out;
    display: inline-block;
}
input[type="submit"],
a.button-red{
    background-color: #a10532;
    border: 3px solid #a10532;
}
a.button-white:hover, a.button-red:hover{
    box-shadow: inset 300px 0 0 #a10532;
    border-color: #a10532;
}
input[type="submit"]:hover, a.button-red:hover{
    box-shadow: inset 300px 0 0 #fff;
    color: #a10532;
    border-color: #a10532;
}
a.button-white{
    color: #a10532;
}
a.button-white:hover{
    color: #fff;
}
/*Header*/
.top-header{
    background-color: #212b51;
    border-style: solid;
    border-color: #a10532;
    border-top-width: 3px;
    padding: 0;
}
.top-header-inside{
    padding: 15px;
}
.top-header-inside p{
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto';
}
.middle-header{
    padding: 50px 0;
    border-bottom: 1px solid #e4e4e4;
}
.middle-header i {
    font-size: 40px;
    float: left;
    margin: 5px -50px 0 0;
    position: absolute;
}
.contact-content{
    margin-left: 50px;
}
.contact-content p:first-child{
    font-family: 'Roboto';
    font-weight: 300;  
}
.contact-content p a{
    color: #212b51;
    font-size: 16px;
    font-family: 'HelveticaLTStd-Roman';
}
#header .collapse.in > .collapse{
    display: block !important;
}
.navbar-default{
    background-color: transparent;
    border: none;
}
.nav > li > a{
    padding: 10px 25px;
}
.nav > li:first-child > a{
    padding-left: 0;
}
.navbar{
    margin-bottom: 0;
}
.navbar-collapse{
    padding-left: 0;
    padding-right: 0;
}
.navbar-default .navbar-nav > li > a{
    font-family: 'Roboto';
    font-weight: 700;
    color: #212b51;
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 25px;
    padding-bottom: 25px;
    letter-spacing: 0.067em;
}
#header ul.dropdown-menu > li > a {
    padding: 18px 20px 18px !important;
    border-bottom: 1px solid #d7d7d7;
    font-family: 'Roboto';
    font-weight: 700;
    color: #212b51;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.067em;
}
#header .navbar-nav > li > .dropdown-menu {
    border-radius: 0;
    padding: 0;
    border: 0;
}
.navbar-default .navbar-nav > .active > a,
 .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > .active > a:focus,
 #header .dropdown-menu > li.active > a,
 .navbar-default .navbar-nav > .open > a,
 .navbar-default .navbar-nav > .open > a:hover,
 .navbar-default .navbar-nav > .open > a:focus{
    color: #a10532;
    background-color: transparent;
}
#header .dropdown-menu > li.active > a:hover{
    color: #212b51;
}
#header .dropdown-menu > li > a:hover{
    background-color: #a10532;
}

/*Home-Banner*/
.banner-counselor-box{
    display: table;
    z-index: 99;
    width: 100%;
    height: 600px;
    position: relative;
}
.banner-counselor-content{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.counselor-box-background{
    padding: 30px;
    background-color: rgba(33,43,81,0.7);
}
.counselor-box-background h5 {
    font-weight: 300;
    font-family: 'Roboto';
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
}
.counselor-box-background a.button{
    margin-bottom: 20px;
}
/*Footer*/
#footer{
    background-color: #272533;
    padding: 40px;
}
#footer p{
    color: #fff;
    text-align: center;    
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 14px;
}
#visa-listing, #home-news{
    text-align: center;
}
/*Home Visa*/
.visa-listing-box{
    border: 1px solid #e7e7e7;
    height: 380px;
    padding: 40px 20px;
    transition-duration: 0.4s;
    transition-property: background-color, border-color;
    position: relative;
}
.visa-listing-box:hover{
    background-color: #f5f5f5;
    transition-duration: 0.4s;
    transition-property: background-color, border-color;
}
.visa-listing-box img {
    padding-bottom: 30px;
}
.visa-listing-box h3 {
    padding-bottom: 15px;
}
.visa-listing-box p{
    font-weight: 300;
    color: #666666;
    padding-bottom: 30px;
}
.visa-listing-box a{
    font-weight: 700;
    text-transform: uppercase;
    color: #212b51;
    position: absolute;
    left: 29%;
    bottom: 45px;
}
.visa-listing-box a:after{
    content: '\00bb';
    font-size: 24px;
    margin-left: 10px;
}
/*Home News*/
#home-news .news-content h3, #home-news .news-content p{
    padding-left: 20px;
    padding-right: 20px;
}
/*About*/
#page-banner .banner-content-table{
    height: 400px;
}
#about-detail{
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.about-box{
    padding: 50px ;
    background-color: #212b51;
}
.about-box h2{
    color: #fff;
}
.about-box p span {
    font-size: 23px;
}
.about-box p,
.about-box p a{
    color: #fff;
}
.about-sub-content {
    background-color: #212b51;
    padding: 50px 30px;
    color: #fff;
}
.about-sub-content h2{
    color: #fff;
    text-align: center;
}
.about-sub-content p{
    padding-top: 20px;
}
/*Contact*/
.mobile-view-unhide{
    display: none;
}
#contact-parallax{
    min-height: 375px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#contact-parallax .banner-overlay{
    opacity: 0.4;
}
#contact-parallax .banner-content-table{
    height: 375px;
}
#contact-parallax p{
    font-weight: 300;
    font-family: 'Roboto';
    color: #fff;
    font-size: 40px;
    line-height: 1.1;
}
.contact-form{
    z-index: 99;
}
textarea,
input[type="text"],
input[type="email"],
input[type="tel"]{
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 10px;
    color: #252525;
    display: block;
}
span.wpcf7-not-valid-tip {
    color: #fff;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
}
div.wpcf7-validation-errors{
    color: #fff;
    border-color: #a10532;
}
.contact-detail-title h3 {
    line-height: 1.4;
    padding-bottom: 40px;
    text-align: center;
}
.contact-detail-content {
    text-align: center;
}
.contact-detail-content i {
    font-size: 40px;
}
.contact-detail-content h5 {
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #212b51;
    font-size: 20px;
    padding: 20px 0;
}
.contact-detail-content ul li,
.contact-detail-content ul li a {
    font-weight: 300;
    color: #666666;
    font-size: 15px;
    letter-spacing: 0.05em;
}
.map{
    padding: 0;
    margin-bottom: -10px;
}
/*News*/
.news-content {
    margin-bottom: 50px;
}
.news-content:last-child{
    margin-bottom: 0px;
}
.news-content h2, .news-recent h2 {
    font-weight: 300;
}
.news-content span.date,
.news-content span.date i{
    font-weight: 300;
    color: #666666;
    font-size: 13px;
    padding-bottom: 20px;
}
.news-content span.date i{
    margin-right: 10px;
}
.news-content img {
    padding-bottom: 20px;
}
.news-content a.button-white{
    margin-bottom: 40px;
}
.news-recent img {
    padding-bottom: 10px;
}
#single-news .sfsi_widget {
    margin-top: 30px;
}
/*Visa*/
#visa-content h2{
    text-align: center;
}
#visa-content tr {
    border-bottom: 1px solid;
    border-top: 1px solid;
}
#visa-content td {
    padding-bottom: 10px;
    padding-top: 10px;
    border-right: 1px solid;
    border-left: 1px solid;
    padding-left: 5px;
    padding-right: 5px;
}
#visa-content p ~ p, #single-page-content p ~ p {
    padding-top: 0;
}
#visa-content ul li,{
    list-style: disc;
    margin-left: 20px;
}
#single-page-content ul li{
    margin-left: 20px;
    margin-top: 10px;
}
#visa-content a{
    color: #212b51;
}
/*Single Page*/
#single-page-content h2{
    text-align: center;
}
/*Tourism*/
#faq-content .panel{
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #0c2751;
    border-radius: 0;
    margin-bottom: 28px;
}
#faq-content .panel:last-child{
    border-bottom: none;
}
#faq-content .panel-heading{
    padding: 0;
    padding-bottom: 20px;
}
#faq-content .panel-body{
    margin-top: -20px;
}
#faq-content .panel h4{
    text-transform: uppercase;
    padding-bottom: 10px;    
    display: inline-block;
    margin-left: 50px;
}
#faq-content .panel .panel-heading span {
    font-family: 'Montserrat-Regular';
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    letter-spacing: 0.05em;
    float: left;
    margin: 0 -50px 0 0;
}
#faq-content .panel-body p{
    color: #333333;
    padding-bottom: 22px;
    margin-left: 35px;
}
#faq-content .panel-body p span{
    font-size: 11px;
}

/* For Responsiveness */

@media(min-device-width : 768px) 
and (max-device-width : 1024px) /*ipad*/
{
.middle-header img {
    margin: 0 auto;
    padding-bottom: 35px;
}
.top-header-inside p{
    text-align: center;
}
.contact-content p a{
    word-wrap: break-word;
}
.top-header{
    margin-bottom: 40px;
}
.visa-listing-box{
    margin-top: 30px;
}
.navbar-default .navbar-nav > li > a,
#header ul.dropdown-menu > li > a{
    font-size: 13px;
}
.nav > li > a{
    padding: 10px 10px;
}
}
@media(max-width:991px){
.top-header-inside p{
    text-align: center;
}
.middle-header .col-sm-6{
    min-height: 65px;
}
.contact-detail-content {
    margin-top: 50px;
}
}
@media (max-width: 767px){
h1{
    font-size: 45px;
}
h2{
    font-size: 30px;
}
.navbar-default .collapse.in .navbar-nav > li > a {
    border-top: 1px solid #d7d7d7;
}
#header .navbar-default .collapse.in ul.dropdown-menu > li > a{
    margin-left: 20px;
}
#header .navbar-default .collapse.in ul.dropdown-menu > li:first-child > a{
    padding-top: 0 !important; 
}
#header ul.dropdown-menu > li:last-child > a{
    border-bottom: none;
}
.navbar-default .navbar-collapse{
    border: none;
}
.nav > li:first-child > a{
    padding-left: 25px;
}
.about-box p a{
    word-wrap: break-word;
}
.middle-header{
    padding: 20px 0;
}
.middle-header img {
    margin: 0 auto;
}
.mobile-view-hide{
    display: none;
}
.navbar-default .navbar-nav > li > a,
#header ul.dropdown-menu > li > a{
    font-size: 13px;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}
.navbar-default .navbar-toggle {
    border-color: #a10532;
    border-radius: 0;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #a10532;
}
#header .bottom-header .container {
    padding-right: 0;
    padding-left: 0;
}
#home-banner{
    height: 500px;
}
#home-banner .banner-content-table,
#home-banner .banner-counselor-box{
    display: block;
    height: unset;
    padding-top: 80px;
}
#home-banner .banner-counselor-box {
    left: 27px;
}
#contact-parallax .banner-content-table {
    height: 250px;
    display: block;
}
.col-sm-6:first-child .about-sub-content {
    margin-bottom: 15px;
}
.visa-listing-box{
    margin-top: 15px;
}
.mobile-view-unhide{
    display: block;
}
}
@media(max-width:480px)
{
#home-banner .banner-content-table,
#home-banner .banner-counselor-box {
    padding-top: 55px;
}
#home-banner .banner-counselor-box {
    left: 0px;
}
}