/*
  Theme Name: MyCard - Personal Business VCard Template.
  Theme URL: http://expandtheme.com/mycard
  Author: ExpandTheme
  Author URI: http://expandtheme
  Description: mycard
  Version: 1.0
*/
/*=======================================================================
[Table of contents]
=========================================================================
[01] Template Fonts
[02] Normalization Css
[03] Margin and padding setup
[04] Button Style
=========================================================================*/

/*=======================================================================
[01] Template Fonts
=========================================================================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700');
@font-face {
    font-family: 'Gobold';
    src: url('../fonts/GoboldBold.eot');
    src: url('../fonts/GoboldBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoboldBold.woff2') format('woff2'),
        url('../fonts/GoboldBold.woff') format('woff'),
        url('../fonts/GoboldBold.ttf') format('truetype'),
        url('../fonts/GoboldBold.svg#GoboldBold') format('svg');
    font-weight: 700;
}
.fontMontserrat{
    font-family: 'Montserrat', sans-serif;
}
.fontPtsans{
    font-family: 'PT Sans', sans-serif;
}
.fontGobold{
    font-family: 'Gobold';
}


/*=======================================================================
[02] Normalization Css
=========================================================================*/
htm, body{
    color: #000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
} 
a{
    color: #000;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
a:hover{
    text-decoration: none;
    color: #000;
}
a:active,
a:focus,
*:focus{
    outline: none !important;
    text-decoration: none;
}
ul,
ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
a img,
iframe,
button,
input,
iframe{
    border: none;
    border: none;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    line-height: 1.5;
    margin: 0 0 25px 0;
    font-family: 'Mitr', sans-serif;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
	font-weight: 200;
	margin: 10% 0;
}
h3 {
    font-size: 24px; 
}
h4 { 
    font-size: 18px; 
}
h5 { 
    font-size: 14px; 
}
h6 {
    font-size: 12px; 
}

/*=======================================================================
[03] Margin and padding setup
=========================================================================*/
.noPadding{
    padding: 0px !important;
}
.noPaddingLeft{
    padding-left: 0px !important;
}
.noPaddingTop{
    padding-top: 0px !important;
}
.noPaddingRight{
    padding-right: 0px !important;
}
.noPaddingBottom{
    padding-bottom: 0px !important;
}
.noMargin{
    margin: 0px !important;
}
.noMarginLeft{
    margin-left: 0px !important;
}
.noMarginTop{
    margin-top: 0px !important;
}
.noMarginRight{
    margin-right: 0px !important;
}
.noMarginBottom{
    margin-bottom: 0px !important;
}

/*=======================================================================
[04] Button Style
=========================================================================*/
.button_vcard{
    height: 54px;
    font-size: 18px;
    line-height: .8;
    color: #363636;
    letter-spacing: 1.8px;
    border: 3px solid #363636;
    text-transform: uppercase;
    font-family: 'Hind', sans-serif;
    display: inline-block;
    padding: 18.5px 76px;
    position: relative;
}
.button_vcard::after,
.folioNext:after{
    background: #3c55c2;
    bottom: 0;
    content: "";
    height: 102%;
    left: 0;
    position: absolute;
    transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    width: 100%;
    z-index: -1;
}
.button_vcard:focus,
.folioNext:focus{
    color: #3c55c2;
}
.button_vcard:hover,
.folioNext:hover{
    border-color: #3c55c2;
    color: #FFF;
}
.button_vcard:hover::after,
.folioNext:hover::after{
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.folioNext{
    position: relative;
}


.commonSection{
   height: 100vh;
}