/** *************************************** **
	

	TABLE OF CONTENTS
	---------------------------
	 01. Typography
	 02. Preloader
	 03. Misc
	 04. Front Content
	 05. Overlay
	 06. Overlay Content
	 07. Overlay Contact
	 08. Overlay Contact Content
	 09. Editions
	 10. Media Queries
	
 **  *************************************** **/



/** 1. TYPOGRAPHY
*****************************************************************/
html,
body
{
    width: 100%;
    height: 100%;
    margin: 0;
}

body
{
    font-weight: 300;
    font-style: normal;top: 0;right: 0;
    bottom: 0; left: 0;

    overflow: visible !important;
	font-family: Arial !important;

    color: #000;
    background: #222;

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-family:'Open Sans', sans-serif !important; ; 
    line-height: auto;

    margin: 0;
    padding: 0;

    color: #000;
}

h1
{
    font-size: 45px;
}

h2
{
    font-size: 35px;
}

h3
{
    font-size: 30px;
}

h4
{
    font-size: 24px;
}

h5
{
    font-size: 18px;
}

h6
{
    font-size: 16px;
}

p
{
    font-family: Arial;
    font-size: 14px;
    line-height: 18px;
}

a,
a:hover,
a:focus
{
    cursor: pointer;
    -webkit-transition: all .3s ease 0s;
       -moz-transition: all .3s ease 0s;
            transition: all .3s ease 0s;
    text-decoration: none;
}

::-webkit-scrollbar
{
    width: 14px;
}
::-webkit-scrollbar-track
{
    background-color: rgba(255,255,255,.0);
}
::-webkit-scrollbar-thumb
{
    background-color: rgba(255,255,255,1);
}
::-webkit-scrollbar-thumb:hover
{
    background-color: rgba(255,255,255,1);
}

/** 2. PRELOADER
*****************************************************************/
#prelaoder
{
    position: fixed;
    z-index: 100000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: #000;
}

.socket
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 52px;
    height: 52px;
    margin: auto;
}

.socket img
{
    -webkit-animation: rotate .6s linear infinite;
            animation: rotate .6s linear infinite;
}
@keyframes rotate
{
    from
    {
        transform: rotate(0deg);
    }
    to
    {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate
{
    /* Safari and Chrome */

    from
    {
        -webkit-transform: rotate(0deg);
    }
    to
    {
        -webkit-transform: rotate(360deg);
    }
}




/** 3. MISC
*****************************************************************/
#bg-darker
{
    position: fixed;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, .5);
}

#bg-pattern,
.pattern
{
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: url('../img/pattern/pattern-bg.png') repeat fixed !important;
}

#bg-image
{
    position: fixed !important;
    z-index: -1;

    width: 100%;
    height: 100%;
}

#bg-video
{
    position: fixed !important;
    z-index: -1;

    width: 100%;
    height: 100%;
}

#canvas-container
{
    position: fixed !important;
    z-index: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
}

canvas
{
    position: fixed !important;
    z-index: 0;

    width: 100%;
    height: 100%;
}

.showOn-video-bg
{
    display: none;
}

.volume-button
{
    font-size: 18px;

    position: absolute;
    z-index: 7;
    top: 20px;
    left: 20px;

    cursor: pointer;

    color: #fff;
}

.stop-button
{
    font-size: 18px;

    position: absolute;
    z-index: 7;
    top: 20px;
    left: 50px;

    cursor: pointer;

    color: #fff;
}


/** 4. FRONT-CONTENT
*****************************************************************/
#front-page
{
    position: static !important;
	    background-color: #e2e4e6;
}

#home-screen
{
    position: relative;
    z-index: 2;
    overflow: visible !important;
    width: 100%;
  
    min-height: 100% !important;
}

#home-screen .content-block
{
	min-height:620px;
    position: relative;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
            transform: translateY(0%);
    text-align: center;
   
}

#home-screen .content-block img.logo
{
    
    margin-bottom: 0px;
    padding-top: 0%;

    opacity: 0;
}

#home-screen .content-block .slide
{
    width: 100%;
    margin: 0 auto;

    text-align: center;

    opacity: 0;
}

#home-screen .content-block h1
{
    font-size: 80px;
    font-weight: 600;
    line-height: auto;

    margin: 0 auto;
    margin-bottom: 50px;

    text-align: center;

    opacity: 0;
    color: #fff;
}

#home-screen .content-block h1 span
{
    color: #1fb8b2;
}

#home-screen .content-block p
{
    font-family: Arial;
    font-size: 17px;
    font-weight: 400;
    line-height: auto;

    padding-bottom: 50px;

    letter-spacing: 2px;

    opacity: 0;
    color: #fff;
}

.arrow-wrap
{
    opacity: 0;
}

.open-overlay i
{
    font-size: 37px;
    line-height: 66px;

    z-index: 2;

    margin: 0 auto;

    cursor: inherit;
    -webkit-transition: all .6s ease 0s;
       -moz-transition: all .6s ease 0s;
            transition: all .6s ease 0s;

    color: inherit;
    background: rgba(255,255,255,.0);
}

div.open-overlay
{
    width: 74px;
    height: 74px;
    margin: 0 auto;

    cursor: pointer;
    -webkit-transition: all .6s ease 0s;
       -moz-transition: all .6s ease 0s;
            transition: all .6s ease 0s;
    text-align: center;

    color: #fff;
    border: solid 4px #fff;
}

div.open-overlay:hover
{
    background: rgba(255,255,255,.03);
}


/** 5. OVERLAY
*****************************************************************/
.overlay
{
    position: fixed !important;
    top: 100%;

    width: 100%;
    height: 100%;
    min-height: 100%;

    -webkit-transition: all .7s ease-in-out 0s;
       -moz-transition: all .7s ease-in-out 0s;
            transition: all .7s ease-in-out 0s;

    background: rgba(0, 0, 0, .6);
	z-index: 10;
}

.overlay-container
{
    position: absolute;

    display: none;
    overflow: visible;

    width: 100%;
    height: 100%;

    text-align: center;
}

.overlay.showOverlay
{
	top: 0;
}

.overlay.hideOverlay
{
	top: 100%;
}

.close-overlay
{
    font-size: 43px;
    line-height: 82px;

    position: absolute;
    z-index: 9;
    top: 0;
    left: 50%;

    display: none;

    width: 82px;
    height: 82px;
    margin-left: -41px;

    cursor: pointer;
    text-align: center;

    color: rgb(246, 246, 246);
    background: rgba(255,255,255,1);
}

.close-overlay img
{
    display: inline !important;

    width: 40px;
    padding-bottom: 6px;
}

/** 6. OVERLAY-CONTENT
*****************************************************************/
.overlay-content
{
    position: absolute;
    top: 50%;

    display: block;

    width: 100%;
    margin: 0 auto;

    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

.overlay-content .container
{
    text-align: center;
}

.overlay-content .container h1
{
    font-family: Arial;
    font-size: 39px;
    font-weight: 400;

    margin-bottom: 30px;

    text-transform: uppercase;

    color: #fff;
}

.overlay-content .container p
{
    font-size: 13px;

    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 15px;

    color: #ccc;
}

.status-message
{
    font-size: 12px;
    font-style: italic;

    max-width: 460px;
    height: 22px;
    margin: 0 auto 5px;

    text-align: center;
    text-transform: uppercase;

    color: #ccc;
}

.subscribe-form
{
    display: inline-block;

   width: 100%;
   max-width: 900px;
   margin:0 auto;
   
    margin-bottom: 0px;

    background: rgba(255, 255, 255, .0);
}

.subscribe-form:after
{
    padding-right: 100px;
    padding-bottom: 50px;

    border-right: 2px #fff solid;
    border-bottom: 2px #fff solid;
}

.subscribe-form input
{
   /*  font-family: Arial;
    font-size: 13px !important;
    font-weight: 300;

    -webkit-transition: all .3s ease 0s;
       -moz-transition: all .3s ease 0s;
            transition: all .3s ease 0s;
    letter-spacing: 1.5px;

    border: none;
    border: 1px solid #fff;
    border-right: none;
    border-radius: 0 !important;
    background: rgba(255,255,255,.00);
    box-shadow: none; */
}
.subscribe-form input::-webkit-input-placeholder
{
    color: #ccc;
}

.subscribe-form input:-moz-placeholder
{
    /* Firefox 18- */
    color: #ccc;
}

.subscribe-form input::-moz-placeholder
{
    /* Firefox 19+ */
    color: #ccc;
}

.subscribe-form input:-ms-input-placeholder
{
    color: #ccc;
}
.subscribe-form input:focus,
.subscribe-form input:active
{
    color: #000;
    border-color: #fff;
    outline: none;
   /*  background: rgba(255,255,255,.06); */
    box-shadow: none;
}


.subscribe-form button
{
    /* font-family: Arial;
    font-size: 16px !important;
    font-weight: 300;
    margin-left: 0 !important;
    padding: 10px 18px;
    -webkit-transition: all .3s ease 0s;
       -moz-transition: all .3s ease 0s;
            transition: all .3s ease 0s;
    letter-spacing: 2px;
    color: #fff;
    border: 0;
    border: 0px solid #fff;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.4);
    box-shadow: none;
	width:243px !important; */
}
.subscribe-form button:hover{
background: #039ac7;
color:#fff !important;
}
.subscribe-form button:focus{
background: #039ac7;
color:#fff !important;
}
.subscribe-form button:active{
background: #039ac7;
color:#fff !important;
}
.subscribe-form button.hover{
background: #039ac7;
color:#fff !important;
}
.subscribe-form button.focus{
background: #039ac7;
color:#fff !important;
}
.subscribe-form button.active{
background: #039ac7;
color:#fff !important;
}
.modalnews{color:#fff;background:#1F4E79;  font:14px Helvetica,Arial,sans-serif; 
	width: 40%;
	height: 50%;
    float: right;
    margin-top: 70px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	background-color: #1F4E79;
	left: 33%;
	top: 33%;
	}

.btnnews { float: right;
    font-size: 14px;
    font-weight: 500;
	float: right !important;
	}
	
	
	.clear { color: #000;}
	#mc_embed_signup_scroll h2 { color: #ffffff !important; text-align: center !important; }
	.mc-field-group { padding: 6px 0px !important; text-align: center;}
	
	.mc-field-group label { font-weight: 500 !important; font-size: 15px !important;
    letter-spacing: 1px;}
	
	.mc-field-group input { 
		width:100% !important; 
		height: 33px !important;
		border-radius: 3px !important;
	}
	
	.modal-header .close {
    margin-top: -10px !important;
    color: #ffffff !important;
    text-shadow: none !important;
}
.fir {
	 margin-left: 35px !important;
}
.btnsub:hover, .btnsub:focus, .btnsub:active, .btnsub.active, .open>.dropdown-toggle.btnsub{
	background-color: #ffffff ;
}

.btnsub { 
	margin-top: 30px;
	letter-spacing: 0.03em;
    font-size: 16px;
}
@media (max-width:769px) {
.modalnews
	{
		width:100%;
		height:50% !important;
		left: 0;
	}
	.btnnews { float: left; width: 100%;}
}
.subscribe-form button:hover,
.subscribe-form button:focus,
{
    border-color: #fff;
    outline: none !important;
    background: rgba(255,255,255,.06);
	color:#fff !important;
}
.subscribe-form button:active
{border-color: #fff;
    outline: none !important;
    background: rgba(255,255,255,.06);
	
	color:#111 !important;

}

.subscribe-form .btn-primary[disabled]
{
    opacity: 1 ;
    color: #fff;
    border: 1px solid #fff ;
    outline: none ;
    background: rgba(255,255,255,.06);
}
.dropdown-menu{
width:242px !important;
text-align:center !important;
font-size:16px !important;
font-weight:300 !important;
margin-left:11.1%;
float:right !important;
border-radius:0px !important;
border:0px !important;
text-transform:none;
}
@media (max-width:837px){
.dropdown-menu{
margin-left:0%;

}
}

.overlay-content .social-icons
{
    margin: 10px 0 0 0;
    padding: 0;

    list-style: none;

    text-align: center;
}

.overlay-content .social-icons li
{
    display: inline-block;

    margin-right: 12px;
    margin-bottom: 6px;
    margin-left: 12px;
}

.overlay-content .social-icons li a
{
    font-size: 17px;
    line-height: 40px;

    width: 40px;
    height: 40px;

    color: #000;
    border-radius: 0;
    background: rgba(255, 255, 255, 1);
}

.overlay-content .social-icons li a:hover
{
    color: #fff;
    background: rgba(255,255,255,.06);
}

.tooltip.bottom .tooltip-arrow
{
    border-bottom-color: rgba(255,255,255,.06);
}

.tooltip.bottom .tooltip-inner
{
    font-family: Arial;

    color: #fff;
    border-radius: 0;
    background: rgba(255,255,255,.06);
}

/** 7. OVERLAY-CONTACT
*****************************************************************/

.overlay-contact
{
    position: fixed !important;
	top: 100%;
    z-index: 20;

    width: 100%;
    height: 100%;
    min-height: 100% !important;

    -webkit-transition: all .7s ease-in-out 0s;
       -moz-transition: all .7s ease-in-out 0s;
            transition: all .7s ease-in-out 0s;

}

.overlay-contact.showOverlay
{
	top: 0;
}

.overlay-contact.hideOverlay
{
    top: 100%;
}

.close-contact
{
    font-size: 43px;
    line-height: 82px;

    position: absolute;
    z-index: 15;
    top: 0;
    left: 50%;

    display: none;

    width: 82px;
    height: 82px;
    margin-left: -41px;
    padding-bottom: 6px;

    cursor: pointer;
    text-align: center;

    background: rgba(255,255,255,1);
}

.close-contact img
{
    display: inline !important;

    width: 40px;
    padding-bottom: 6px;
}


/** 8. OVERLAY-CONTACT-CONTENT
*****************************************************************/
.overlay-contact-content
{
    position: absolute;
    top: 50%;

    display: block;

    width: 100%;
    margin: 0 auto;

    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

.overlay-contact-content h1
{
    font-family: Arial;
    font-size: 39px;

    margin-bottom: 30px;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
}

.overlay-contact-content p
{
    font-size: 13px;

    max-width: 370px;
    margin: 0 auto;
    margin-bottom: 30px;

    text-align: center;

    color: #d6d6d6;
}

.overlay-contact-content form
{
    font-size: 18px;

    margin-top: 20px;

    text-align: center;
}

.overlay-contact-content form .control-group
{
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
}

.overlay-contact-content form label
{
    font-family: Arial;
    font-size: 14px;
    font-weight: normal;

    float: left;

    margin-bottom: 12px;

    text-transform: uppercase;

    color: #b1b1b1;
}

.overlay-contact-content form span.status
{
    font-size: 13px;
    font-style: italic;

    color: #b1b1b1;
}

.overlay-contact-content form input,
.overlay-contact-content form textarea
{
    font-size: 13px;

    overflow: hidden;

    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    margin-bottom: 20px;
    padding-left: 10px;

    -webkit-transition: all .2s linear;
       -moz-transition: all .2s linear;
         -o-transition: all .2s linear;
            transition: all .2s linear;

    color: #d6d6d6;
    border: none;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    outline: none;
    background: rgba(255,255,255,0);
    box-shadow: none;
}

.overlay-contact-content form textarea
{
    height: 110px;
    padding-top: 10px;

    resize: none !important;
}

.overlay-contact-content form input:focus,
.overlay-contact-content form input:active
{
    border: 1px solid #d6d6d6;
    outline: none;
    background: rgba(255,255,255,.06);
}

.overlay-contact-content form textarea:focus,
.overlay-contact-content form textarea:active
{
    border: 1px solid #fff;
    outline: none;
    background: rgba(255,255,255,.06);
}

.overlay-contact-content form button
{
    font-family: Arial;
    font-size: 13px;
    font-weight: 400;
    line-height: 50px;

    display: inline-block;
    float: none;

    width: 150px;
    height: 50px;
    padding: 0 10px 0 10px;

    -webkit-transition: all .3s ease 0s;
       -moz-transition: all .3s ease 0s;
            transition: all .3s ease 0s;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #d6d6d6;
    border: 1px solid #d6d6d6;
    border-radius: 0;
    background: rgba(255,255,255,0);
}

.overlay-contact-content form button:hover,
.overlay-contact-content form button:focus,
.overlay-contact-content form button:active
{
    color: #d6d6d6;
    border: 1px solid #d6d6d6;
    outline: none;
    background: rgba(255,255,255,.06);
}

.overlay-contact-content .status-message-contact
{
    font-family: Arial;
    font-size: 14px;
    font-weight: normal;

    float: center;

    margin-top: 20px;
    margin-bottom: 12px;

    text-transform: uppercase;

    color: #b1b1b1;
}

/** 9. EDITIONS
 *****************************************************************/
.white .overlay
{
    background: rgba(255, 255, 255, .6);
}

.white .overlay-content .container h1
{
    color: #000;
}

.white .overlay-content .container p
{
    color: #333;
}

.white .status-message
{
    color: #444;
}

.white .subscribe-form input
{
    border: 1px solid #000;
    border-right: none;
}

.white .subscribe-form input::-webkit-input-placeholder
{
    color: #333;
}

.white .subscribe-form input:-moz-placeholder
{
    /* Firefox 18- */
    color: #333;
}

.white .subscribe-form input::-moz-placeholder
{
    /* Firefox 19+ */
    color: #333;
}

.white .subscribe-form input:-ms-input-placeholder
{
    color: #333;
}

.white .subscribe-form input:focus,
.white .subscribe-form input:active
{
    color: #000;
    border-color: #000;
    background: rgba(0,0,0,.06);
}


.white .subscribe-form button
{
    color: #fff;
    border: 1px solid #000;
    background: rgba(0,0,0,1);
}

.white .subscribe-form button:hover,
.white .subscribe-form button:focus,
.white .subscribe-form button:active
{
    border-color: #000;
    background: rgba(0,0,0,.06);
}

.white .subscribe-form .btn-primary[disabled]
{
    opacity: 1;
    color: #000;
    border: 1px solid #000 ;
    outline: none ;
    background: rgba(0,0,0,.06);
}

.white .overlay-content .social-icons li a
{
    color: #fff;
    background: rgba(0, 0, 0, 1);
}

.white .overlay-content .social-icons li a:hover
{
    color: #fff;
    background: rgba(0,0,0,.06);
}

.white .tooltip.bottom .tooltip-arrow
{
    border-bottom-color: rgba(0,0,0,.06);
}

.white .tooltip.bottom .tooltip-inner
{
    color: #fff;
    background: rgba(0,0,0,.06);
}

.white .close-overlay
{
    background: rgba(0,0,0,1);
}

.white .close-overlay img
{
    content: url('../img/cross-white-icon.png');
}

.white .overlay-contact-content h1
{
    color: #000;
}

.white .overlay-contact-content p
{
    color: #333;
}

.white .overlay-contact-content form label
{
    color: #333;
}

.white .overlay-contact-content form span.status
{
    color: #333;
}

.white .overlay-contact-content form input,
.white .overlay-contact-content form textarea
{
    color: #333;
    border: 1px solid #333;
}

.white .overlay-contact-content form input:focus,
.white .overlay-contact-content form input:active
{
    border: 1px solid #333;
    background: rgba(0,0,0,.06);
}

.white .overlay-contact-content form textarea:focus,
.white .overlay-contact-content form textarea:active
{
    border: 1px solid #333;
    background: rgba(0,0,0,.06);
}

.white .overlay-contact-content form button
{
    color: #333;
    border: 1px solid #333;
}

.white .overlay-contact-content form button:hover,
.white .overlay-contact-content form button:focus,
.white .overlay-contact-content form button:active
{
    color: #333;
    border: 1px solid #333;
    background: rgba(0,0,0,.06);
}

.white .overlay-contact-content .status-message-contact
{
    color: #333;
}

.white .close-contact
{
    background: rgba(0,0,0,1);
}

.white .close-contact img
{
    content: url('../img/cross-white-icon.png');
}
.extended .overlay
{
    top: 0;
	opacity: 0;
	z-index: 0;
	-webkit-transition: all 1s ease-in-out 0s;
       -moz-transition: all 1s ease-in-out 0s;
            transition: all 1s ease-in-out 0s;
}

.extended .overlay.showOverlay
{
    z-index: 5;
    top: 0;
    opacity: 1;
}

 .extended.overlay.hideOverlay
{
    z-index: 0;
	top: 0;
    opacity: 0;
}

.extended .overlay-contact
{
    top: 0;
	opacity: 0;
	z-index: 0;
	-webkit-transition: all 1s ease-in-out 0s;
       -moz-transition: all 1s ease-in-out 0s;
            transition: all 1s ease-in-out 0s;
}

.extended .overlay-contact.showOverlay
{
    z-index: 5;
    top: 0;
    opacity: 1;
}

 .extended .overlay-contact.hideOverlay
{
    z-index: 0;
	top: 0;
    opacity: 0;
}

 .font_22 { 
	margin-top: 8px;
	color: #000 !important;
    line-height: 33px;
    font-size: 23px;
    /* float: right; */
}
.form_01 {
	background-color: transparent;
	width: 100%;
	padding-bottom: 20px;
	margin-top: 30px;
	margin-bottom: 20px;
	padding-left: 15px;
	padding-right: 15px;
}
#mc_embed_signup  .form_01 label {
	color: #10376B;
	font-size: 16px;
	font-weight: 600;
	font-family: Arial;
	padding-bottom: 15px;
}
#mc_embed_signup  .form_01 input {
	background-color: #fff;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	width: 100%;
	margin: 0 auto;
	/* height: 30%; */
	border: 1px solid #999999;
	/* margin-left: 25%; */
}
#mc_embed_signup .form_01 input.mc-textbox {
	border: 2px solid #C6282E;
	height: 36px;
	text-align: left;
	padding: 3px 15px;
	margin-bottom: 20px;
}
.form_01 input.mc-textbox::-webkit-input-placeholder, .form_01 input.mc-textbox:-moz-placeholder, .form_01 input.mc-textbox::-moz-input-placeholder, .form_01 input.mc-textbox::placholder {
	text-align: left;
	direction: ltr;
}
#mc_embed_signup  .form_01 input.mc-button {
	background: #C6282E;
	padding: 10px 35px;
	border-radius: 12px;
	display: inline-block;
	border:0;
	color: #ffffff;
	margin: 0 auto;
	width: auto;
}
.form_02 {
	background-color: #1F4E79;
	width: 100%;
	padding-bottom: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.form_02 label {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}
.form_02 input {
	background-color: #fff;
	font-size: 18px;
	font-weight: 500;
	width: 50%;
	height: 30%;
	border: 1px solid #999999;
	margin-left: 25%;
}
.form_02 input[type |="button"] {
	background-color: #fff;
	font-size: 18px;
	font-weight: 500;
	width: 50%;
	height: 30%;
	border: 1px solid #999999;
	
}
.subscribe-row { margin: 0px;}
.pad-row {
	 /* background:rgba(255,255,255,0.65); 
	 border:2px solid #2D2E53; */
	 margin: 0 auto;
	 max-width: 100%;
	  padding: 20px;
}
.subscribe-row
{
	margin: 0 auto 0 auto;
}
.btnsubmit:hover, .btnsubmit:focus, .btnsubmit:active, .btnsubmit.active, .open>.dropdown-toggle.btnsubmit{
	background-color: #FF0000 !important;
}
.btnsubmit {
	width: 32%;
    height: 59px;
    border-radius: 1px;
    font-size: 19px !important;
    background-color: #FF0000 !important;
    font-weight: 600;
    border: 1px solid #333;
}
h5.free{ 
	color: #ffffff;
	font-family: Arial;
	margin-bottom: 0;
}
h5.click{ 
	color: #ffffff;
	padding: 10px !important;
	font-size: 15px;
    text-align: center;
	font-style: italic;
	font-family: Arial;
}
h5.resp{ 
	color: #ffffff;
	font-size: 14px;
	line-height: 16px;
	padding:0;
	margin:0;
}
h5.immig{
	color: #C6282E;
	font-size: 18px;
	line-height: 26px;
	font-weight: bold;
	/* margin: 20px 0px; */
	font-family: Arial;
}
.copyryt {
	font-size: 12px;
	margin-bottom: 15px;
}


.mc-blue-bg
{
	background: #10376B;
	padding: 10px 30px;
}
.mc-red-bg
{
	background: #C6282E;
	padding: 10px 30px;
}
.mc-white-bg
{
	background: #ffffff;
	padding: 20px 30px;
}







/** 10. MEDIA QUERIES
 *****************************************************************/

@media screen and (max-height: 800px)
{
	
    #home-screen .content-block h1
    {
        font-size: 60px;
    }

    #home-screen .content-block p
    {
        font-size: 14px;

        padding-bottom: 40px;
    }

    .overlay-contact-content .container
    {
        margin-top: 80px;
    }
}

@media only screen and (max-height: 630px)
{	
    .overlay-content
    {
        height: 100% !important;
    }

    .overlay-contact-content
    {
        height: 100% !important;
    }

    #home-screen .content-block h1
    {
        font-size: 55px;

        margin-bottom: 40px;
    }

    .open-overlay
    {
        font-size: 32px;
        line-height: 70px;

        width: 70px;
        height: 70px;
        margin-top: -70px;
        margin-left: -35px;
    }

    #home-screen .content-block img.logo
    {
        max-width: 100%;
        margin-bottom: 8px;
    }

    .open-overlay
    {
        font-size: 28px;
        line-height: 60px;

        width: 60px;
        height: 60px;
        margin-top: -60px;
        margin-left: -30px;
    }

    .close-overlay
    {
        font-size: 22px;
        line-height: 60px;

        width: 60px;
        height: 60px;
        margin-left: -30px;
    }

    .close-contact
    {
        font-size: 22px;
        line-height: 60px;

        width: 60px;
        height: 60px;
        margin-left: -30px;
    }

    .close-overlay img,
    .close-contact img
    {
        width: 30px;
    }

    .overlay-content .container
    {
        margin-top: 0;
        padding-top: 80px;

        text-align: center;
    }

    .overlay-contact-content .container
    {
        margin-top: 80px;
    }
	.president_image
	{
		margin-top: 20px;
	}
	.subscribe-form
	{
		/* margin-top: 30px; */
		width: 100%;
	}
}

@media only screen and (max-height: 320px)
{
    .content-block
    {
        overflow: auto;

        height: 100% !important;
    }
}

@media (max-width: 768px) {
	.form_01 {
		width: 100%;
		margin-left:0px;
	}
	.pad-row {
		 margin-left: 0px;
		 margin-right: 0px;
	}
	.title11 {
		margin-left: 0px;
	}
	.menu_main br{
		display:none !important;
	}
}
@media only screen and (max-width: 768px)
{
    .open-overlay i
    {
        font-size: 32px;
        line-height: 56px;
    }

    div.open-overlay
    {
        width: 60px;
        height: 60px;
    }

    #home-screen .content-block p
    {
        padding-bottom: 60px;
    }

    #home-screen .content-block h1
    {
        font-size: 45px;
    }

    .subscribe-form
    {
        display: inline-block;
        width: 100%;
        background: rgba(255, 255, 255, .0);
    }
}

@media only screen and (max-width: 480px)
{
    #home-screen .content-block h1
    {
        font-size: 40px;
    }

    #home-screen .content-block p
    {
        font-size: 10px;
        font-weight: 300;

        padding-bottom: 20px;

        letter-spacing: 2px;
    }

    #home-screen .content-block img.logo
    {
        width: 190px;
        margin-bottom: 4px;
    }

    .overlay-content .container h1
    {
        font-size: 30px;
    }

    .overlay-content .container p
    {
        font-size: 10px;
    }

    .overlay-contact-content h1
    {
        font-size: 35px;
    }

    .overlay-contact-content p
    {
        font-size: 10px;
    }

    .open-overlay
    {
        font-size: 28px;
        line-height: 60px;

        width: 60px;
        height: 60px;
        margin-top: -60px;
        margin-left: -30px;
    }

    .close-overlay
    {
        font-size: 22px;
        line-height: 60px;

        width: 60px;
        height: 60px;
        margin-left: -30px;
    }


    .close-contact
    {
        font-size: 22px;
        line-height: 60px;

        width: 60px;
        height: 60px;
        margin-left: -30px;
    }

    .close-overlay img,
    .close-contact img
    {
        width: 30px;
    }

    .subscribe-form button
    {
        /* font-size: 12px !important; */
    }
}

@media only screen and (max-width: 400px), only screen and (max-height: 310px)
{
    #home-screen .content-block h1
    {
        font-size: 30px;

        margin-bottom: 30px;
    }

    #home-screen .content-block img.logo
    {
        width: 170px;
        margin-bottom: 8px;
    }

    .overlay-content .container h1
    {
        font-size: 30px;
    }

    .overlay-contact-content h1
    {
        font-size: 30px;
    }

    .overlay-content .container
    {
        margin-top: 0;
        padding-top: 80px;

        text-align: center;
    }

    .overlay-contact-content .container
    {
        margin-top: 80px;
    }
}

@media only screen and (max-width: 355px) ,only screen and (max-height: 280px)
{
    #home-screen .content-block h1
    {
        font-size: 28px;

        margin-bottom: 30px;
    }

    #home-screen .content-block img.logo
    {
        width: 150px;
        margin-bottom: 4px;
    }

    .overlay-content .container h1
    {
        font-size: 28px;
    }

    .overlay-contact-content h1
    {
        font-size: 28px;
    }
}
.btn_color{

}
.btn_color:hover{
background:#03b1e6  !important;
border:0px solid #03b1e6 !important;
color:#fff !important;
}
.title11 {
    text-align: center;
	/* margin-left: 38px; */
}
.title11 h2 {
    line-height: 60px;
    text-align: left;
}

.title11 .line{
    background: url(../../website/images/h-line9.png) no-repeat center top;
    height: 7px;
    display: block;
    bottom: 0px;
    width: 140px;
	margin: 0 auto 12px;
}

.zoom_img img{
margin:10px;
margin-top:0px !important;

-moz-transition:-moz-transform 0.5s ease-in; 
-webkit-transition:-webkit-transform 0.5s ease-in; 
-o-transition:-o-transform 0.5s ease-in;
}
.zoom_img img:hover{
-moz-transform:scale(1.5); 
-webkit-transform:scale(1.5);
-o-transform:scale(1.5);
}
.font_35{
font-size:27px;
font-family: Arial;
font-weight:400 !important;
/* text-align:center !important; */
text-transform:uppercase;
padding-top:3%;
color:#3b3b6d !important;
}

.font_39{
line-height:30px;
color: #000 !important;
font-family:'Open Sans', sans-serif;
font-size:16px !important;
font-weight:bold;
text-align: left;
}
h4.name-photo{
font-weight: bold;
padding-top:15px;
font-size:20px !important;
padding-bottom:10px !important;
color:#2D2E53 !important; 
font-family: Arial;
text-align: left;
display: inline-block;
}
h4.name-photo1{
font-weight: bold;
/* padding-top:4%; */
font-size:20px !important;
/* padding:10px !important; */
margin: 10px !important;
color:#2D2E53 !important; 
font-family: Arial;"
}
h4.name-photo2{
font-weight: bold;
font-size:18px !important;
padding:0px !important;
margin-bottom: 10px !important;
color:#1F4E79 !important; 
font-family: Arial;
}
.font_221{

line-height:32px;
font-family:'Open Sans', sans-serif ;
font-weight:400 !important;

float:left;color:#000  !important;font-size:32px !important;padding-left:15%;
}

.font_222{
    margin-bottom: 25px;
line-height:32px;
font-family: 'Open Sans', sans-serif !important;
font-weight:400 !important;
color:#000 !important;
font-size:32px !important;
/* margin-left: 14px; */
max-width: 275px;
text-align: center;

}

.yellow-box
{
	background: rgba(250,247,76,0.5);
	border: 1px solid rgba(250,247,76,0.8);
	padding: 20px;
	color: #000000;
	font-size: 16px;
	font-family: Arial;
	line-height: 26px;
	text-align: center;
	margin: 20px auto;
	max-width: 800px;
}


@media (max-width: 786px){
.font_35{
font-size:17px;
margin-left: 10px;
}
.font_221{
font-size:22px !important;
padding-left:0%;
}
.font_222{
font-size: 18px  !important;
padding-right:13%;
margin-left: 5px;
}


.font_29{
font-size:12px !important;
line-height:30px;
font-family: Arial;
font-weight:400 !important;
color:#fff !important;
}
}
.president_image{
max-width:100% !important;
width: 220px;
}
.left-side
{
	text-align: left;
}

.flag-section
{
	max-width: 660px;
	margin: 0 auto;
}
@media (max-width: 991px){

}
.flag_img{
display:inline !important; max-width: 290px !important; padding:1% 0; width: 100%;
}
@media (max-width: 900px){
.flag_img{
max-width:65% !important;
}
}

@media (max-width: 440px){
.flag_img{
max-width:70% !important;
}
}
.innerlist {
    margin: 0 0 20px;
    padding: 0;
}
.innerlist li {
    color: #2d2e53 !important;
    font-size: 18px;
    line-height: 24px;
    list-style-type: square;
    margin-bottom: 6px;
    margin-left: 20px;
    padding-left: 0;
    text-align: justify !important;
	font-family: Arial;
}
.font_down_13{
font-size:12px !important;
font-family: Arial;
}
.mar-pad{
margin-bottom:10px; padding-top:10px;
}
.pad-top-10{
padding-top:10px;
}
.pad-top-15{
	padding-top:15px;
	}
@media (max-width: 786px){
.innerlist li {
    font-size: 10px;
text-align: left!important;
line-height: 12px;
}
.mar-pad{
margin-bottom:0px; padding-top:0px;
}

.font_down_13{
font-size:10px !important;
}
.pad-top-10{
padding-top:0px;
}
.title11 h2 {
    line-height: 16px;}
	.font_35 {
	padding-top:2%;
	}
	.pad-top-15{
	padding-top:0px !important;
	}
	
	.container {
		width: 100%;
	}
}
.form-group {
    margin-bottom: 5px;
}
.videofra {
    float: left;
    width: 100%;
    height: 250px;
}

.top_nav {
    background: #3b3b6d none repeat scroll 0 0;
    float: left;
    padding: 0;
    width: 100%;
}

/* new 28-11-16 */

.logo {
    float: left;
    width: 25%;
}

#trueHeader #logo {
    background: rgba(0, 0, 0, 0) url("../../usa/images/myworkvisa-logo.png") no-repeat scroll center top;
    display: block;
    float: left;
    margin-top: 0;
    min-height: 57px;
    position: relative;
    text-indent: -999em;
    width: 100%;
	background-size:100%;
}


#trueHeader {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    left: 0;
    padding: 30px 0;
    right: 0;
    transition: padding 0.35s ease 0s;
    z-index: 9999;
}
#trueHeader {
    background: #fff none repeat scroll 0 0;
}
.topcap {
    color: #ffffff;
    font-weight: bold;
	font-size: 16px;
}


#header {
    margin: 0;
}
.wrapper::after, #page::after, .wrapper::before, #page::before {
    content: " ";
    display: table;
    height: 0;
    overflow: hidden;
}
.top_nav {
    background: #3b3b6d none repeat scroll 0 0;
    float: left;
    padding: 0;
    width: 100%;
}
.top_nav .left {
    float: left;
    padding: 9px 0;
    width: 55%;
}
.top_nav .right {
    color: #ffffff;
    float: left;
    font-size: 13px;
    text-align: right;
    width: 45%;
}
.top_nav ul.topsocial {
    float: left;
    margin: 0 25px 0 0;
    padding: 0;
}
.top_nav .topsocial li {
    float: left;
    margin: 0 8px 0 0;
    padding: 0;
}
.top_nav .topsocial li a {
    background: #fbfbfb none repeat scroll 0 0;
    border-radius: 100%;
    color: #7274a5;
    float: left;
    font-size: 12px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    width: 23px;
}
.top-space {
    float: left;
    padding: 9px 0;
	font-size: 16px;
}
.topsitesearch {
    float: right;
    margin: 8px 0 0 20px;
    padding: 0;
	font-size: 16px;
	font-weight: 400;
}
.topsitesearch a {
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	
}
.top-space {
    float: left;
    padding: 9px 0;
	font-weight: 400;
}

.wrapper, #page {
    margin: 0 auto;
    width: 100%;
}

#header.sticky #trueHeader {
    position: fixed;
    top: 0;
}

#header
{
	font-family: Arial;
}
.navbar-default {
    background-color: transparent;
    border-color: transparent;
	border:0;
}
#header .container {
    max-width: 1170px;
    width: auto;
	padding-left: 0px;
    padding-right: 0px;
}
/* .container > .navbar-collapse { */
    /* padding-right: 90px !important; */
/* } */
.navbar-default .navbar-nav > li > a
{
	font-weight: bold;
	color: #3B3B6D !important;
	font-size: 17px;
}
.navbar
{
	margin-bottom:0;
}

.ytp-small-mode .ytp-large-play-button
{
	left: 85% !important;
	top: 85% !important;
}

@media (max-width: 786px){
	.top_nav ul.topsocial {
		clear: both;
    float: none;
    height: 25px;
    margin: 0 auto;
    text-align: center;
    width: 160px;
	}
	.top_nav .left
	{
		width: 100%;
	}
	.topcap {
		width: 100%;
		text-align: center;
		margin-top: 5px;
	}
	.top_nav .right {
		width: 100%;
		float: none;
		text-align: center;
	}
	.top-space
	{
		width: 100%;
		text-align: center;
	}
	.topsitesearch
	{
		margin: 10px auto 10px auto;
		float: none;
		width: 100%;
	}
	.logo {
		float: none;
		width: 100%;
		text-align: center;
	}
	#trueHeader #logo
	{
		background-size: 250px;
		
	}
}
#mc_embed_signup .mc-field-group
{
	min-height: 92px !important;
}
.header-tagline{
	text-align:right;
}
.header-tagline h1{
	 color: #3b3b6d;
    font-weight: bold;
    margin: 20px auto;
    font-size: 22px;
}
.i-want-to-immigrate-to strong{
	font-size: 22px;
	line-height:30px;
	text-align: center !important;
	margin-bottom: 15px;
	line-height:28px;
	display:block;
}
@media (max-width:769px) {
	.header-tagline{
	text-align:center !important;
	}
}
@media and (min-width: 992px){
	.clear input
	{
		float:left;
	}
}
@media (max-width: 425px){
	#home-screen{
		background: none!important;
	}
}
.footer{
	padding:10px;
	    margin-top: 104px;
}
.grey-box{
	max-width: 390px;
	margin: 0 auto;	
	font-weight: normal;
    color: black;
    border: 3px solid black;
    padding: 7px 17px;
    font-size: 15px;
	line-height: 1.35;
    background-color: #B4BBC1;
	height:247px;
	text-align: left;
}
.grey-box h6{
	font-weight: bold;
    color: black;
    font-size: 13px;
	margin-bottom: 4px;
	text-align: center;
}
.vd{
	max-width: 390px; margin: 0 auto;height:247px;
}
@media (max-width:1024px){
	.grey-box h6 {
		height:200px;
	}
	.videofra {
    height: 200px;
	}
}
@media(max-width:768px){
	.grey-box {
    max-width: 390px;
    margin: 10px auto;
	}
	.grey2{
    max-width: 390px;
    margin: 0px auto;
	margin-bottom:30px;
	}
	.vd{
		height:225px;
	}
}