body, html {
    font-size: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    background: #000;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}
div, p {
    margin: 0;
    padding: 0;
}
p {
    color: #ffffff;
    margin: 0;
    padding: 0;
}
a {
    cursor: pointer!important;
}
a:link, a:visited {
    color: #fff;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}
a:hover, a:active {
    color: #fff;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}
img {
    border: medium none;
}
.img-responsive {
    background-size: cover;
    height: auto;
    width: 100%;
}
.table {
    display: table;
    position: relative;
}
.cell {
    display: table-cell;
    vertical-align: middle;
}
/*--On Scroll--*/
.toAnim {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 1s ease 0s;
}
.toAnim.anim {
    opacity: 1;
    filter: alpha(opacity=100);
}

/*--Country Overlay--*/
#overlay1 {
    background: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#overlay1 > div .countries {
    background: rgba(255,255,255,.2);
    width: 270px;
    height: auto;
    border: 1px solid #ccc;
    margin: 0 auto;
    padding: 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#overlay1 > div .countries h2 {
    color: #fff;
    font-family: 'Open sans', sans-serif;
    font-size: 23px;
    font-weight: 400;
    margin: 0 auto 15px auto;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}
#overlay1 > div .countries .flags {
    width: 210px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#overlay1 > div .countries .flags .outer {
    width: 60px;
    position: relative;
}
#overlay1 > div .countries .flags .outer p {
    color: #fff;
    font-family: 'Open sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}
#overlay1 > div .countries .flags .outer img {
    display: block;
    width: 60px;
    height: 40px;
    margin: 0 0 5px 0;
    padding: 0;
    cursor: pointer;
}
#overlay1 > div .countries .flags .outer .flags-overlay {
    background: rgba(255,255,255,.4);
    width: 100%;
    height: 40px;
    padding: 0;
    margin: 0;
    text-align: center;
    opacity: 0;
    z-index: 3!important;
    position: absolute;
    -webkit-transition: all 50ms ease-in-out 50ms;
    -moz-transition: all 50ms ease-in-out 50ms;
    -ms-transition: all 50ms ease-in-out 50ms;
    -o-transition: all 50ms ease-in-out 50ms;
    transition: all 50ms ease-in-out 50ms;
}
#overlay1 > div .countries .flags .outer:hover .flags-overlay {
    z-index: 3!important;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 50ms ease-in-out 50ms;
    -moz-transition: all 50ms ease-in-out 50ms;
    -ms-transition: all 50ms ease-in-out 50ms;
    -o-transition: all 50ms ease-in-out 50ms;
    transition: all 50ms ease-in-out 50ms;
}

/*--Header--*/
#header {
    background: #f3c2db;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
#header .content {
    max-width: 1160px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}
#header .content:after {
    content: "";
    clear: both;
    display: block;
}
#header .content #logo {
    background-size: 124px auto;
    width: 124px;
    height: auto;
    margin: 17px 0;
    padding: 0;
    float: left;
}
#header .content ul {
    float: right;
    display: inline;
    margin: 31px 20px 0 0;
    padding: 0;
    list-style: none;
    height: 34px;
    z-index: 9999;
}
#header .content ul li {
    display: inline-block;
    margin: 0;
    position: relative;
    padding: 0;
    cursor: pointer;
    height: 34px;
    margin: 0;
}
#header .content ul li img {
    background-size: 50px 34px;
    width: 50px;
    height: 34px;
}
#header .content ul li ul {
    padding: 0;
    position: absolute;
    top: 34px;
    left: 0;
    margin: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#header .content ul li ul li {
    display: block; 
}
#header .content ul li ul li:hover {
    opacity: .85;
    cursor: pointer;
}
#header .content ul li:hover ul {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
/*Navigation*/
#header .content .navigation {
    list-style: outside none none;
    margin: 43px 20px 0 0;
    padding: 0;
    float: right;
}
#header .content .navigation:after {
    content: "";
    clear: both;
    display: block;
}
#header .content .navigation li {
    float: left;
}
#header .content .navigation li a {
    color: #fff;
    font-family: 'Open sans', sans-serif;
    font-size: 15px;
    display: block;
    margin: 0;
    padding: 0 8px;
    line-height: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#header .content .navigation li a:hover {
    color: #f279b8;
    cursor: pointer;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#header .content .navigation .no-padding1 {
    padding-left: 0;
}
#header .content .navigation .no-padding2 {
    padding-right: 0;
}

/*Login*/
#header .content .login {
    display: block;
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin: 36px 0 0 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 27px;
    float: right;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#header .content .login:hover {
    color: #f279b8;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}

/*--Hero--*/
#hero {
    background: url(../img/hero-bg.jpg) no-repeat center top;
    background-size: cover;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 0 9.6% 0;
    position: relative;
    overflow: hidden;
}
#hero .content1 {
    max-width: 1160px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px 8% 20px;
    display: flex;
    justify-content: flex-end;
}
#hero .content1 .social {
    margin: 0;
    padding: 0;
}
#hero .content1 .social div {
  -webkit-filter: drop-shadow(2px 0px 1px rgba(0,0,0,.1)); /* Safari */
  filter: drop-shadow(2px 0px 1px rgba(0,0,0,.1));
}
#hero .content1 .social #youtube {
    background: url(../img/youtube.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 10px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero .content1 .social #twitter {
    background: url(../img/twitter.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 10px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero .content1 .social #facebook {
    background: url(../img/facebook.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 10px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero .content1 .social #instagram {
    background: url(../img/instagram.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 10px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero .content1 .social #blogger {
    background: url(../img/blogger.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
/*Fade in Down*/
.fadeIn {
    -webkit-animation: fadeIn 2.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeIn 2.5s; /* Firefox < 16 */
        -ms-animation: fadeIn 2.5s; /* Internet Explorer */
         -o-animation: fadeIn 2.5s; /* Opera < 12.1 */
            animation: fadeIn 2.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#hero .content {
    margin: 0 auto;
    padding: 0;
    width: 615px;
    height: auto;
    position: relative;
}
#hero .content #hero-logo {
    background-size: 615px auto;
    width: 615px;
    height: auto;
    margin: 0;
    padding: 0;
}

/*--5 Step Form--*/
#form-wrapper {
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 120px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 997;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#form-wrapper:after {
    content: "";
    clear: both;
    display: block;
}

/*--2 Step Form--*/
#lbform-wrapper {
    background: #e6e5e5;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    z-index: 997;
}

/*Fixed Form State*/
.fixed {
    background: url(../img/niche-pattern.png) repeat rgba(0,0,0,.98)!important;
    position: fixed!important;
    top: 0px;
    height: 80px!important;
    bottom: auto!important;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
.fixed #form {
    height: 80px;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
.fixed .signup {
    margin: 10px auto;
}
.fixed .myButton {
    margin: 10px 20px 10px 0;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
.fixed #fstep_1, .fixed #fstep_2, .fixed #fstep_3 {
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
.fixed #fstep_1 select, .fixed #fstep_2 select, .fixed #fstep_3 .form-terms {
}
.fixed #fstep_1 select {
    margin-left: 20px!important;
    margin-right: 20px!important;
}
#fstep_1 select:nth-child(2) {
    margin: 0 !important;
}
.fixed .form-terms {
    font-size: 10px!important;
    line-height: 9px!important;
}
.fixed #form select, .fixed #form input[type=text], .fixed #form input[type=password] {
    height: 60px;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
.fixed #fstep_1 label.error, 
.fixed #fstep_2 label.error, 
.fixed #fstep_3 label.error {
    background: none;
    color: #fff;
    font-size: 10px;
    padding: 0;
    top: -11px;
}

/*--Row1--*/
#row1 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 50px 0;
}
#row1 .content {
    max-width: 1160px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}
#row1 .content:after {
    content: "";
    clear: both;
    display: block;
}
/*left*/
#row1 .content .left {
    background: url(../img/row1-img1.jpg) no-repeat center top;
    background-size: cover;
    width: 50%;
    height: 380px;
    margin: 0;
    padding: 0;
    float: left;
}
/*right*/
#row1 .content .right {
    background: #f3c2db;
    width: 50%;
    height: 380px;
    margin: 0;
    padding: 0;
    float: left;
}
#row1 .content .right div {
    padding: 0 60px 0 78px;
}
#row1 .content .right h2 {
    color: #f279b8;
    font-size: 23px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 22px;
    padding: 0;
    text-transform: uppercase;
}
#row1 .content .right p {
    color: #fff;
    font-size: 17px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 23px;
    padding: 0;
}
#row1 .content .right .last {
    margin-bottom: 0;
}

/*left2*/
#row1 .content .left2 {
    background: #f3c2db;
    width: 50%;
    height: 380px;
    margin: 0;
    padding: 0;
    float: left;
}
#row1 .content .left2 div {
    padding: 0 60px 0 78px;
}
#row1 .content .left2 h2 {
    color: #f279b8;
    font-size: 23px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 22px;
    padding: 0;
    text-transform: uppercase;
}
#row1 .content .left2 p {
    color: #fff;
    font-size: 17px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 23px;
    padding: 0;
}
#row1 .content .left2 .last {
    margin-bottom: 0;
}
/*right2*/
#row1 .content .right2 {
    background: url(../img/row1-img2.jpg) no-repeat center top;
    background-size: cover;
    width: 50%;
    height: 380px;
    margin: 0;
    padding: 0;
    float: left;
}

/*--Row 2--*/
#row2 {
    background: url(../img/row2-bg.jpg) no-repeat center top;
    background-size: cover;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 65px 0;
}
#row2 h2 {
    color: #f279b8;
    font-size: 23px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    line-height: 22px;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}
#row2 p {
    color: #fff;
    font-size: 17px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    margin: 0 auto 10px auto;
    line-height: 23px;
    padding: 0;
    text-align: center;
    width: 980px;
}
#row2 .last {
    margin-bottom: 0;
}
#row2 p span {
    font-weight: 600;
}

/*--Row 3--*/
#row3 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 65px 0;
}
#row3 .content {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
#row3 h2 {
    color: #f279b8;
    font-size: 33px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 29px;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}
#row3 .content:after {
    content: "";
    clear: both;
    display: block;
}
#row3 .content .box {
    float: left;
    width: 33.33%;
    margin: 0 auto;
}
#row3 .content .box img {
    display: block;
    margin: 0 auto 10px auto;
    padding: 0;
}
#row3 .content .box h2 {
    color: #333;
    font-size: 18px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 22px;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}
#row3 .content .box p {
    color: #f279b8;
    font-size: 15px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 22px;
    padding: 0;
    text-align: center;
}

/*--Row 4--*/
#row4 {
    background: #f7d4e6;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 65px 0;
}
#row4 .content {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#row4 h2 {
    color: #fff;
    font-size: 40px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 29px;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}
#row4 .content img {
    display: block;
    margin: 0;
    padding: 0;
}
#row4 .content .cosmopolitan {
    width: 200px;
    height: auto;
}
#row4 .content .huff-post {
    width: 200px;
    height: auto;  
}
#row4 .content .huff-live {
    width: 84px;
    height: auto;
}
#row4 .content .advocate {
    width: 200px;
    height: auto;
}
#row4 .content .diva-logo {
    width: 150px;
    height: auto;
}

/*--Row 5--*/
#row5 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 65px 0 0 0;
}
#row5 .content {
    max-width: 1200px;
    height: auto;
    margin: 0 auto 23px auto;
    padding: 0 20px;
}
#row5 .content:after {
    content: "";
    clear: both;
    display: block;
}
#row5 img {
    display: block;
    background-size: 164px auto;
    width: 164px;
    height: auto;
    margin: 0 auto 33px auto;
    padding: 0;
}
#row5 .content .pod {
    width: 32%;
    height: 280px;
    float: left;
    margin: 0 23px 0 0;
    padding: 0;
    cursor: pointer;
}
#row5 .content .last {
    margin-right: 0!important;
}
#row5 .last {
    margin-bottom: 0;
}
#row5 .content .pod1 {
    background: url(../img/row5-img1.jpg) no-repeat;
    background-size: cover;
}
#row5 .content .pod2 {
    background: url(../img/row5-img2.jpg) no-repeat;
    background-size: cover;
}
#row5 .content .pod3 {
    background: url(../img/row5-img3.jpg) no-repeat;
    background-size: cover;
}
#row5 .content .pod4 {
    background: url(../img/row5-img4.jpg) no-repeat;
    background-size: cover;
}
#row5 .content .pod5 {
    background: url(../img/row5-img5.jpg) no-repeat;
    background-size: cover;
}
#row5 .content .pod6 {
    background: url(../img/row5-img6.jpg) no-repeat;
    background-size: cover;
}
#row5 .content .pod h2 {
    color: #fff;
    font-size: 40px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 45px;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 60px rgba(0,0,0,.3);
    z-index: 10;
    position: relative;
}
#row5 .content .pod .overlay {
    opacity: 0;
    background: rgba(0,0,0,.2);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#row5 .content .pod:hover .overlay {
    opacity: 1;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}

/*--Row 6--*/
#row6 {
    background: #f4c8df;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
#row6 .content {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}
#row6 .content:after {
    content: "";
    clear: both;
    display: block;
}
#row6 .content img {
    display: block;
    background-size: 116px auto;
    width: 116px;
    height: auto;
    margin: 0 auto 20px auto;
    padding: 0;
}
#row6 .content .pod {
    width: 25%;
    height: auto;
    float: left;
    margin: 0;
    padding: 60px 0;
}
#row6 .content .last {
    margin-right: 0;
}
#row6 .content .pod1, 
#row6 .content .pod3 {
    background: rgba(255,255,255,.1);
}
#row6 .content .pod h2 {
    color: #fff;
    font-size: 30px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 25px;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
    z-index: 10;
    position: relative;
}

/*--Row 7--*/
#row7 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 60px 0;
}
#row7 .content {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}
#row7 .content:after {
    content: "";
    clear: both;
    display: block;
}
#row7 .content .left {
    width: 50%;
    height: auto;
    float: left;
    margin: 0;
    padding: 0;
}
#row7 .content .left h2 {
    color: #f279b8;
    font-size: 23px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    margin: 0 0 18px 0;
    line-height: 24px;
    padding: 0;
    text-transform: uppercase;
    width: 420px;
}
#row7 .content .left p {
    color: #333;
    font-size: 16px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    margin: 0 0 24px 0;
    line-height: 23px;
    padding: 0;
}
#row7 .content .left .authors {
    font-size: 18px;
    font-family: 'Open sans', sans-serif;
    font-weight: 800;
    font-style: italic;
    line-height: 13px;
    margin-bottom: 5px;
}
#row7 .content .left .authors1 {
    font-style: italic;
    margin-bottom: 0;
}
#row7 .content .right {
    width: 50%;
    height: auto;
    float: left;
    margin: 0;
    padding: 0;
}
#row7 .content .right img {
    display: block;
    margin: 0 auto;
    padding: 0;
}

/*--Footer--*/
#footer {
    background: #f29dc9;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 77px 0;
}
#footer .content {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}
#footer .content:after {
    content: "";
    clear: both;
    display: block;
}
#footer .content .social {
    margin: 0;
    float: left;
}
#footer .content .social:after {
    content: "";
    clear: both;
    display: block;
}
#footer .content .social #youtube {
    background: url(../img/youtube.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 20px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .social #twitter {
    background: url(../img/twitter.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 20px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .social #facebook {
    background: url(../img/facebook.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 20px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .social #instagram {
    background: url(../img/instagram.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0 20px 0 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .social #blogger {
    background: url(../img/blogger.png) no-repeat;
    background-size: 46px 46px;
    width: 46px;
    height: 46px;
    margin: 0;
    padding: 0;
    float: left;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .social #facebook:hover, 
#footer .content .social #twitter:hover, 
#footer .content .social #youtube:hover, 
#footer .content .social #instagram:hover, 
#footer .content .social #blogger:hover {
    opacity: .7;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .right {
    float: right;
}
#footer .content .right:after {
    content: "";
    clear: both;
    display: block;
}
#footer .content .right h2 {
    color: #fff;
    font-size: 18px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 14px 0px;
    float: left;
}
#footer .content .right #btn {
    background: #f3c2db;
    color: #fff;
    font-size: 18px;
    font-family: 'Open sans', sans-serif;
    font-weight: 400;
    margin: 0 20px;
    padding: 16px 28px;
    text-align: center;
    text-transform: uppercase;
    line-height: 13px;
    float: left;
    display: block;
    float: left;
    -webkit-border-radius: 35px 35px 35px 35px;
    border-radius: 35px 35px 35px 35px;
    overflow: hidden;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .right #btn:hover {
    background: #f279b8;
    cursor: pointer;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .right #scrolltotop {
    background: url(../img/scrolltotop.png) no-repeat center center #f3c2db;
    background-size: 19px 13px;
    color: #111;
    font-family: Raleway, sans-serif;
    font-size: 15px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    line-height: 13px;
    float: left;
    display: block;
    float: right;
    width: 46px;
    height: 46px;
    -webkit-border-radius: 35px 35px 35px 35px;
    border-radius: 35px 35px 35px 35px;
    overflow: hidden;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#footer .content .right #scrolltotop:hover {
    opacity: .8;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
/*Navigation*/
#footer .content .navigation {
    list-style: outside none none;
    margin: 25px 0 0 0;
    padding: 0;
    display: none;
}
#footer .content .navigation li {
    float: none;
}
#footer .content .navigation li a {
    display: block;
    color: #fff;
    font-family: 'Open sans', sans-serif;
    font-size: 15px;
    display: block;
    margin: 0 auto 20px auto;
    padding: 0;
    line-height: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#footer .content .navigation li a:hover {
    color: #f279b8;
    cursor: pointer;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#footer .content .navigation .last {
    margin-bottom: 0!important;
}

/*---------------MEDIA QUERIES---------------*/
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1240px) {
/*    #row4 .content .diva-logo {
        width: 12%;
        height: auto;
        padding: 18px 0;
    }
    #row4 .content .advocate {
        width: 20%;
        height: auto;
        padding: 19px 0;
    }
    #row4 .content .huff-post {
        width: 19%;
        height: auto;  
    }
    #row4 .content .huff-live {
        width: 7%;
        height: auto;
    }
    #row4 .content .ttf-mag {
        width: 25%;
        height: auto;
        padding: 18px 0;
        margin: 0;
    }*/
    #row5 .content .pod {
        margin: 0 1.98% 0 0;
        height: 22vw;
    }
}
@media screen and (max-width: 1200px) {
/*    #header #logo {
        margin-left: 2.3%;
    }
    #header .social {
        margin-right: 1.4%;
    }
    #hero {
        padding: 10.25% 0 20.25% 0;
    }
    #fstep_1, #fstep_2, #fstep_3 {
        width: 86%!important;
    }
    #fstep_1 select {
        width: 47%!important;
        margin: 0 2.5%!important;
    }
    .fixed #fstep_1 select {
        margin: 0 2.5%!important
    }
    #fstep_1 #dating-gender2 {
        float: left!important;
        width: 47%!important;
        margin: 0!important;
    }
    .myButton {
        margin-left: 2%!important;
        margin-right: 2%!important;
        width: 10%!important;
    }
    .drop_down_container {
        width: 47%!important;
        margin: 0 2.5%!important;
    }
    #form select#dobday, #form select#dobyear {
        width: 29.5%!important;
    }
    #form select#dobmonth {
        width: 40%!important;
    }
    #fstep_2 input {
        width: 48%!important;
        float: right!important;
    }
    #fstep_3 #email {
        width: 47%!important;
        font-size: 14px!important;
    }
    #fstep_3 #dating-password {
        float: left;
        width: 46%!important;
    }*/
    #row7 .content .right img {
        float: right;
    }
}
@media screen and (max-width: 1100px) {
    #row4 .content .cosmopolitan {
        width: 130px;
    }
    #row4 .content .huff-post {
        width: 130px;
    }
    #row4 .content .huff-live {
        width: 70px;
    }
    #row4 .content .advocate {
        width: 130px;
    }
    #row4 .content .diva-logo {
        width: 130px;
    }
}
@media screen and (max-width: 1150px) {
/*    #fstep_1 select {
        font-size: 16px!important;
        letter-spacing: -.5px;
    }
    #form select#dobmonth {
        letter-spacing: -2px;
    }
    #fstep_3 input {
        width: 55%!important;
    }*/
}
@media screen and (max-width: 1020px) {
    #row2 p {
        width: auto;
        padding: 0 40px;
    }
}
@media screen and (max-width: 1000px) {
    #row6 .content img {
        background-size: 76px auto;
        width: 76px;
    }
    #row6 .content .pod h2 {
        font-size: 25px;
    }
    #footer {
        padding: 50px 0;
    }
    #footer .content .social {
        margin: 0 auto;
        float: none;
        width: 310px;
    }
    #footer .content .right {
        margin: 0 auto;
        float: none;
        width: 280px;
    }
    #footer .content .right h2 {
        margin: 10px auto 0 auto;
        float: none;
        text-align: center;
    }
    #footer .content .right #btn {
        margin: 0 auto;
        float: none;
        width: 280px;
        padding: 16px 0;
    }
    #footer .content .right #scrolltotop {
        margin: 20px 42.4% 0 42.4%;
    }
}
@media screen and (max-width: 980px) {
    #row1 .content .right div, 
    #row1 .content .left2 div {
        padding: 0 60px 0 58px;
    }
}
@media screen and (max-width: 930px) {
}
@media screen and (max-width: 900px) {
    .form-terms {
        font-size: 10px!important;
    }
    #row1 .content .right p, 
    #row1 .content .left2 p {
        font-size: 16px;
    }
    #row4 {
        padding: 50px 0;
    }
/*    #row4 .content .diva-logo, 
    #row4 .content .advocate, 
    #row4 .content .huff-post, 
    #row4 .content .huff-live, 
    #row4 .content .ttf-mag {
        float: none;
        margin: 0 auto;
        padding: 15px 0;
    }
    #row4 .content .diva-logo {
        width: 150px;
    }
    #row4 .content .advocate {
        width: 252px;
    }
    #row4 .content .huff-post {
        width: 219px;
    }
    #row4 .content .huff-live {
        width: 84px;
    }
    #row4 .content .ttf-mag {
        width: 250px;
    }*/
    #row5 {
        padding: 50px 0;
    }
    #row5 .content .pod h2 {
        font-size: 30px;
        line-height: 36px;
    }
}
@media screen and (max-width: 880px) {
/*    .drop_down_container {
        width: 52%!important;
    }
    #form select#dobday, #form select#dobyear {
        width: 31.33%!important;
    }
    #form select#dobmonth {
        width: 37%!important;
    }
    #fstep_2 input {
        width: 43%!important;
    }
    .fixed #fstep_3 .form-terms {
        font-size: 10px!important;
    }
    #fstep_3 input {
        width: 54%!important;
    }*/
    #row3 .content .box {
        width: 28.33%;
        padding: 0 2.5%;
    }
    #row3 .content .box img {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width: 850px) {
    #row1 .content .right p, 
    #row1 .content .left2 p {
        font-size: 15px;
        line-height: 20px;
    }
    #row2 p {
        font-size: 15px;
        line-height: 20px;
    }
    #row6 .content .pod {
        width: 50%;
        padding: 30px 0;
    }
}
@media screen and (max-width: 750px) {
    #hero {
        width: 100%;
        padding: 3% 0;
        height: 390px;
    }
    #hero .content {
        width: auto;
    }
    #hero .content #hero-logo {
        display: none;
/*        background-size: cover;
        width: auto;*/
    }
    #hero #form-wrapper {
        background: none;
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        transition: none;
    }
    .fixed {
        background: none!important;
        position: absolute!important;
        top: auto!important;
        height: 370px!important;
        bottom: 0!important;
        transition: none!important;
    }
    #row4 .content {
        flex-direction: column;
        height: 300px;
    }
    #row1 {
        padding-bottom: 0;
    }
    #row1 .content .left {
        width: 100%;
        height: 280px;
    } 
    #row1 .content .right {
        width: 100%;
        height: auto;
        padding: 50px 0;
    }
    #row1 .content .right2 {
        width: 100%;
        height: 280px;
        float: right;
    }
    #row1 .content .left2 {
        width: 100%;
        height: auto;
        padding: 50px 0;
        border-top: 4px solid #fff;
    }
    #row2 {
        padding: 40px 0;
    }
    #row3 h2 {
        margin-bottom: 20px;
        padding: 0 20px;
    }
    #row3 {
        padding: 40px 0;
    }
    #row7 {
        padding: 40px 0;
    }
    #row7 .content .left {
        width: 100%;
    }
    #row7 .content .left h2 {
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }
    #row7 .content .left p {
        text-align: center;
    }
    #row7 .content .right {
        width: 100%;
    }
    #row7 .content .right img {
        margin-top: 30px;
        float: none;
    }
}
@media screen and (max-width: 650px) {
    #row1 .content .left {
        height: 200px;
    }
    #row1 .content .right2 {
        height: 200px;
        background-position: center center;
    }
    #row5 .content .pod h2 {
        font-size: 22px;
        line-height: 26px;
    }
}
@media screen and (max-width: 620px) {
    #header .content .navigation {
        display: none;
    }
    #footer .content .navigation {
        display: block;
    }
}
@media screen and (max-width: 550px) {
}
@media screen and (max-width: 490px) {
    #overlay {
        background: rgba(0,0,0,0.85);
    }
    #overlay > div {
        padding: 0 20px;
    }
    #overlay > div .countries {
        width: auto;
    }
    #overlay > div .countries .flags {
        margin: 0 auto;
        width: 230px;
    }
    #overlay > div .countries .flags a {
        margin-bottom: 10px;
    }
    #overlay > div .countries .flags a:nth-child(4) {
        margin-right: 0;
    }
    #overlay > div .countries .flags a:nth-child(5),
    #overlay > div .countries .flags a:nth-child(6),
    #overlay > div .countries .flags a:nth-child(7) {
        margin-bottom: 0;
    }
    #overlay > div .countries .flags a:nth-child(5) {
        margin-left: 30px;
    }
}
@media screen and (max-width: 480px) {
    #row5 {
        padding: 50px 0 30px 0;
    }
    #row5 .content .pod {
        width: 100%;
        height: 50vw;
        margin: 0 auto 20px auto;
    }
    #row5 .content .pod h2 {
        font-size: 40px;
        line-height: 46px;
    }
    #row5 .content {
        margin-bottom: 0!important;
    }
    #row6 .content {
        padding: 0;
    }
    #row6 .content .pod {
        width: 100%;
        padding: 30px 0;
    }
    #row6 .content img {
        background-size: 116px auto;
        width: 116px;
    }
}
@media screen and (max-width: 440px) {
    #row7 .content .left h2 {
        width: auto;
    }

}
/*iPhone 6 Plus*/
@media screen and (max-width: 414px) {
    #hero .content1 .social div {
        background-size: 37px 37px!important;
        width: 37px!important;
        height: 37px!important;
    }
    #row1 .content .right div, #row1 .content .left2 div {
        padding: 0 30px;
    }
    #row1 .content .right, #row1 .content .left2 {
        padding: 30px 0;
    }
    #row1 .content .right h2,
     #row1 .content .left2 h2,
     #row1 .content .right p,
      #row1 .content .left2 p {
        text-align: center;
    }
    #row2 {
        padding: 35px 0;
    }
    #row3 {
        padding: 40px 0 20px 0;
    }
    #row3 h2 {
        font-size: 25px;
    }
    #row3 .content .box {
        width: 70%;
        padding: 0 15%;
        margin-bottom: 30px;
    }
    #row6 .content img {
        background-size: 80px auto;
        width: 80px;
    }
}
@media screen and (max-width: 390px) {
    #overlay1 > div .countries {
        width: auto;
    }
    #overlay1 > div .countries h2 {
        font-size: 20px;
    }
}
@media screen and (max-width: 350px) {
    #footer .content {
        padding-left: 0;
        padding-right: 0;
    }
    #overlay > div .countries h2 {
        font-size: 18px;
    }
    #footer .content .social #blogger {
        margin-right: 0;
    }
    #footer .content .social {
        width: 260px;
    }
    #footer .content .right h2 {
        width: 200px;
    }
    #footer .content .social #youtube, 
    #footer .content .social #twitter, 
    #footer .content .social #facebook, 
    #footer .content .social #instagram, 
    #footer .content .social #blogger {
        background-size: 36px 36px;
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width: 375px) {
    #row5 .content .pod h2 {
        font-size: 30px;
        line-height: 32px;
    }
}
@media screen and (max-width: 320px) {
    #overlay1 > div .countries .flags {
        width: 200px;
    }
    #overlay1 > div .countries h2 {
        font-size: 17px;
    }
}
@media screen and (max-width: 318px) {
    #header .content #logo {
        width: 40%;
    }
    #header .content .login  {
        margin-top: 33px;
    }
    #header .content ul {
        margin-top: 28px;
    }
    #row7 .content .right img {
        width: 100%;
        height: auto;
        background-size: cover;
    }
}
@media screen and (max-width: 270px) {
    #header .content .login {
        font-size: 20px;
    }
    #header .content ul {
        margin-right: 10px;
    }
    #hero .content1 .social #youtube, 
    #hero .content1 .social #facebook, 
    #hero .content1 .social #twitter, 
    #hero .content1 .social #instagram {
        margin-right: 5px!important;
    }
}