@charset "utf-8";

/* CSS Document */

/*===============================================================

Common portion start

=================================================================

*/

/*////////////////////////////////////////

// General Css

///////////////////////////////////////*/




@import url("https://use.typekit.net/pqy7gko.css");


@font-face {
  font-family: 'Nanami';
  src: url('../fonts/Nanami.eot?#iefix') format('embedded-opentype'),  url('../fonts/Nanami.otf')  format('opentype'),
       url('../fonts/Nanami.woff') format('woff'), url('../fonts/Nanami.ttf')  format('truetype'), url('../fonts/Nanami.svg#Nanami') format('svg');
  font-weight: normal;
  font-style: normal;
}


html, body, a {

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
   /* scroll-behavior: smooth;*/


}

* {

    box-sizing: border-box;

}



body {

  margin: 0;

  padding: 0;

  font-size: 16px;

  background: #ffffff;

  line-height: 1.5;

  font-family: montserrat, sans-serif;

  font-weight: 400;

  font-style: normal;

  color: #18191b;

  overflow-x: hidden;

}



div, table, tr, th, td, figure, th, video, audio, h1, h2, h3, h4, h5, h6, aside, canvas, section, header, footer, nav, span, p, small, big, a, b, strong, img, hr, pre, button, input, textarea, optgroup, ul, li, ol, select, option, blockquote, nav {

    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    list-style-type: none;
    -webkit-font-smoothing: antialiased; 
    box-sizing: border-box;
}


button:focus{
  outline: none;
}




.parent-wrap {

    width: 100%;

    height: 100%;

    display: table;

}

.child-wrap {

    width: 100%;

    height: 100%;

    display: table-cell;

    vertical-align: middle;

}

img {

    max-width: 100%;

}

p span.medium{
  font-family: inherit;
  font-weight: 500;
  font-size: 17px
}




h1, h2, h3, h4, h5, h6 {
    font-family: 'Nanami';
    color: #000
    
}

h1{
  font-size: 50px;
  line-height: 1
}

h2{
font-size: 50px;
  line-height: 1


}



h3{
 font-size: 40px;
 line-height: 1.1
}

h4 {
   font-size: 25px;
  line-height: 1.1
}

h5{


}


h6{
 
}

a{
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

p, a, li {

  font-family: inherit;

}

p:last-child{

  padding-bottom:0;

}



ul {

  margin-bottom: 0px ;

}



input, textarea{

    font-size: 15px;
    color: #18191b ;
    font-weight: 300;
    text-indent: 20px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */

  color: #585858!important;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  font-family: montserrat, sans-serif;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #585858!important;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  font-family: montserrat, sans-serif;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #585858!important;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  font-family: montserrat, sans-serif;

}

:-moz-placeholder { /* Firefox 18- */
  color: #585858!important;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  font-family: montserrat, sans-serif;

  
}


::selection {

    background: #000;

    color: #fff;

}

::-moz-selection {

 background: #000;

 color:#fff;

}

::-webkit-selection {

 background: #000;

 color:#fff;

}

::-o-selection {

 background: #000;

 color:#fff;

}

::-ms-selection {

 background: #000;

 color:#fff;

}



.dFlx{

  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */

  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */

  display: -ms-flexbox;      /* TWEENER - IE 10 */

  display: -webkit-flex;     /* NEW - Chrome */

  display: flex;

  

}


.btn{
   
   border-radius: 24px;
   padding: 12px 28px 10px;
   font-family: 'Nanami';
   font-size: 18px;
   text-transform: capitalize;
   border:none;
   overflow: hidden;
   position: relative;
   display: inline-block;
   margin-top: 25px;
   -webkit-transform: translate3d(0px, 0px, 0px);
   -ms-transform: translate3d(0px, 0px, 0px);
   -o-transform: translate3d(0px, 0px, 0px);
   transform: translate3d(0px, 0px, 0px);

}

.btn:focus{
  box-shadow: none;
}

.btn .effect{
  position: absolute;
  width: 200px;
  height: 80px;
  top: 0%;
  left: 0%;
  z-index: 1;
  -webkit-transform: scale(0,0) ;
  -ms-transform: scale(0,0);
  -o-transform: scale(0,0);
  transform: scale(0,0);
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  border-radius: 50%;
  display: block;
  transform-origin: 50px 50px
}
.btn .text{
  position: relative;
  z-index: 999;
   -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
.btn:hover .effect{
   -webkit-transform: scale(2,1.5) rotate(20deg);
   -ms-transform: scale(2,1.5) rotate(20deg);
   -o-transform: scale(2,1.5) rotate(20deg);
   transform: scale(2,1.5) rotate(20deg);
   opacity: 1
}



.btn.btn-orange:hover .text, .btn.btn-white:hover .text, .btn.btn-yellow:hover .text, .btn.btn-blue:hover .text, .btn.btn-deep-blue:hover .text{
  color: #fff
}

.btn.btn-white.btn-shodow:hover, .btn.btn-yellow.btn-shodow:hover, .btn.btn-blue:hover, .btn.btn-deep-blue:hover {
  box-shadow: none;
}


.btn-orange{
  background: #ff5000;
  color: #fff
}

.btn.btn-orange:hover .effect, .btn.btn-white:hover .effect, .btn.btn-yellow:hover .effect, .btn.btn-blue:hover .effect, .btn.btn-deep-blue .effect{
  background: #000
}


.btn-white{
  background: #fff;
  color: #000
 
}
.btn-shodow{
   box-shadow: 7px 12px 20px rgba(0,0,0,.1)
}


.btn-yellow{
  background: #f8a41a;
  color: #fff
}
.btn-blue{
  background: #0d88b8;
  color: #fff
}

.btn-deep-blue{
  background: #133150;
  color: #fff
}

.large-btn{
  width: 180px;
}

a{
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  text-decoration: none;
  outline: none;
}

a:hover {
    text-decoration: none;
}




.text-center{

  text-align: center;

}

.text-left{

  text-align: left;

}

.section-padding{
  padding: 90px 0;
}

.p-narrow-60{
  padding: 60px 0;
}

.p-medium-80{
  padding: 80px 0;
}

.p-big-gap{
  padding: 100px 0;
}



.no-gutters{

  margin: 0;

  padding: 0;

}

.blue{

  color: #146dd1;

}

.large-pad{

  padding: 185px 0;

}


/*////////////////////////////////////////////////////////////////////////       Custom css       ////////////////////////////////////////////////////////////////*/

.logo a{
  display: block;
}

header{
  padding: 32px 0;
}


.logo{
  width: 33%
}

header nav{
  width:55%;
}

header nav .navbar-nav li a{
  color: rgba(0,0,0,1);
  font-family: 'Nanami';
  font-size: 18px;
  
}
header nav .navbar-nav li a:hover{
  color: #ff5000
}

.navbar-expand-lg .navbar-nav .nav-link{
  padding-right: 1rem;
    padding-left: 1rem;
}

header nav .navbar-nav li{
  margin: 0 5px;
}



#banner .left{
  padding-right: 26px
}
#banner .left h1{
  margin: 15px 0 20px
}

#banner .right{
  text-align: right;
   padding-left: 75px
}

#banner .btn{
  display: inline-block;
  margin-top: 25px;
  margin-right: 10px;
 
}

#publishers{
   border-top:3px solid #ebebef;
   border-bottom:3px solid #ebebef;
}

#publishers h4{
  text-align: center;
  color: #000;
  margin-bottom: 45px
}

.home-slider .item{
  padding: 0 15px
}

.home-slider .owl-nav {
  display: none;
}

#why h3{
  margin-bottom:30px
}

#why .left{
  padding-right: 90px;
}

#why .right{
  padding-left: 90px;
}

.flex-row-reverse .left{
  padding-left: 90px !important;
  padding-right: 0 !important;
}

.flex-row-reverse .right{
  padding-right: 90px !important;
  padding-left: 0 !important
} 

.flex-row-reverse{
  padding-top: 0 !important
}



#cards h3{
  text-align: center;
  margin-bottom: 90px
}

#cards{
  padding-top: 30px;
  background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(234,234,239,1) 30%, rgba(234,234,239,1) 80%, rgba(250,164,25,1) 80%, rgba(250,164,25,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(30%, rgba(255,255,255,1)), color-stop(30%, rgba(234,234,239,1)), color-stop(80%, rgba(234,234,239,1)), color-stop(80%, rgba(250,164,25,1)), color-stop(100%, rgba(250,164,25,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(234,234,239,1) 30%, rgba(234,234,239,1) 80%, rgba(250,164,25,1) 80%, rgba(250,164,25,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(234,234,239,1) 30%, rgba(234,234,239,1) 80%, rgba(250,164,25,1) 80%, rgba(250,164,25,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(234,234,239,1) 30%, rgba(234,234,239,1) 80%, rgba(250,164,25,1) 80%, rgba(250,164,25,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(234,234,239,1) 30%, rgba(234,234,239,1) 80%, rgba(250,164,25,1) 80%, rgba(250,164,25,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#faa419', GradientType=0 );
}
#cards .cards-holder ul li{
  width: 30%;
  background: #fff;
  border-radius: 25px;
  box-shadow: 3px 12px 25px rgba(0,0,0,.1);
  margin: 18px;
  padding: 50px;
  text-align: center;
  padding-top: 25px
}


#cards .cards-holder ul li p{
  font-size: 15px;
  color: #6d6e71;
  font-weight: 500
}

#cards .cards-holder ul li h4{
 margin: 30px 0;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;

}

#cards .cards-holder ul li img{
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}
#cards .cards-holder ul.first-row li{
  padding-top: 50px;
  position: relative;
}

#cards .cards-holder ul.first-row li img{
  position: absolute;
  left: 50%;
  top: -10%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*#cards .cards-holder ul.first-row li:hover img{
  top: 25px;
}*/
#cards .cards-holder ul.first-row li h4{
  margin-top: 75px
}

.cards-holder{
  margin-top: 12%
}

#cards .cards-holder ul li a.btn{
       margin-top: 30px;
}

#subscription{
   background: #faa519;
   text-align: center;
   
}
#subscription.home-page{
  padding-top: 0
}

#subscription h2, #subscription p, #subscription p a{
  color: #fff
}

#subscription p {
  margin-top: 30px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

footer {
  padding-bottom: 0px;
}

footer .row:first-child{
  padding-bottom: 55px;
  border-bottom: 3px solid #f1f1f5
}

footer .logo{
  width: 33%
}
footer nav{
  width: 55%
}
footer nav ul.first-nav{
  margin-left: auto;
}
footer .btn{
  margin-top: 0
}

footer nav ul li a{
  font-size: 18px;
  color: #000;
  font-family: 'Nanami';
}
footer nav ul li a:hover{
  color: #ff5000
}

footer .login-btn{
  margin-top: 22px;
}

footer nav ul.first-nav + ul{
  margin-right: 40px;
}

.copyright {
  padding-top:25px
}
.copyright p{
  font-weight: 500;
  color: #4d4d4d
}

header .btn{
  margin-top: 0;
}


.navbar-toggler span.ham-bar{
  width: 100%;
  height: 3px;
  position: absolute;
  background: #ff5000;
  left: 50%;
  width: 80%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;

}
.navbar-toggler {
  position: relative;
  width: 45px;
  height: 42px;
  padding: 0;
  border: 1px solid #ff5000;
  margin-left: auto;
  margin-right: 15px
}

.navbar-toggler span.ham-bar:first-child{
  top: 10px
}
.navbar-toggler span.ham-bar:nth-of-type(2){
  top: 20px
}
.navbar-toggler span.ham-bar:last-child{
  top: 30px
}

.navbar-toggler.active span.ham-bar:nth-of-type(2){
  opacity: 0
}

.navbar-toggler.active span.ham-bar{
  top: 50%
}

.navbar-toggler.active span.ham-bar:first-child{
    -webkit-transform: rotate(45deg) translateX(0);
    -ms-transform: rotate(45deg) translateX(0);
    -o-transform: rotate(45deg) translateX(0);
    transform: rotate(45deg) translateX(0);
    transform-origin: 50% 50%;
    left:4px
}

.navbar-toggler.active span.ham-bar:last-child{
    -webkit-transform: rotate(-45deg) translateX(0);
    -ms-transform: rotate(-45deg) translateX(0);
    -o-transform: rotate(-45deg) translateX(0);
    transform: rotate(-45deg) translateX(0);
    transform-origin: 50% 50%;
    left:4px
}


.cross{
  position: absolute;
  right: 10px;
  top: 10px
}

header nav .navbar-nav li:last-child{
  display: none;
}

#why.contact{
  background: #f1f1f4
}
#why.contact .flex-row-reverse .left{
      padding-left: 25px !important;
}

#why.contact  .flex-row-reverse .right{
      padding-right: 25px !important;
}

#why.contact h2{
  margin-bottom: 20px
}

.form{
      padding-right: 20%;
    margin-top: 50px;
}

.form input:not([type=submit]){
  width: 100%;
  height: 50px
}

.form .f-row{
  margin:10px 0;
}

.form input[type=submit]{
  width: 100%;
  height: 50px;
  border-radius: 24px;
  background: transparent;
  color: #fff;
  font-size: inherit;
  font-family: inherit;
  position: relative;
  z-index: 9999;
  text-indent: 0
}

.no-padding{
  padding:0;
}

.cont-info{
  margin-top:50px;
}

.cont-info h5, .cont-info h5 a{
  margin:4px 0;
  color: #000
}

.cont-info h5 a:hover{
  color: #ff5000
}

.forgot{
  display: inline-block;
  vertical-align: middle;
}

.form .label.btn{
  display: inline-block;
  vertical-align: middle;
}

.form .forgot{
  position: relative;
}

.form .forgot input{
  visibility: hidden;
  position: absolute;
}


#why.contact.login form .f-row:last-child{
  vertical-align: middle;
}

#why.contact.login form .forgot {
  margin-top: 0px;
  padding-left: 0px;
  margin-right: 20px
}

#why.contact.login form input[type=checkbox]{
  height: auto;
}

#why.contact.login form .forgot label {
  position: relative;
  cursor:pointer;
      margin-bottom: 0;
}

#why.contact.login form .forgot label:before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  margin-right:0px;
}

#why.contact.login form .forgot label .text{
  margin-left: 26px;
    height: 20px;
    line-height: 13px;
    font-size: 14px;
    color: #7f7f7f;
}


#why.contact.login form input[type=checkbox]:checked + label:before {
   background: #fff url(../images/tick.png) no-repeat center center;
}

/* :::::::::::::somdwip::::::::::::::::: */

/* ::::::::::::::crm-why-start:::::::::::::::::: */

.navbar-nav li.active a {
  color:#c9c9d6 !important;
}

.w-65 {
width: 65%;
}


.mar-left {
  padding-left:90px !important;
}


/* banner-part-start */
#banner p.w-65, #cards p.w-65 {
margin: 0 auto;
}


/* banner-part-end */
.inner-card {
background: rgba(255, 255, 255, 1);
background: -webkit-linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(234, 234, 239, 1) 30%, rgba(234, 234, 239, 1) 80%, rgba(234, 234, 239, 1) 80%, rgba(234, 234, 239, 1) 100%) !important;
background: -o-linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(234, 234, 239, 1) 30%, rgba(234, 234, 239, 1) 80%, rgba(234, 234, 239, 1) 80%, rgba(234, 234, 239, 1) 100%) !important;
background: linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(234, 234, 239, 1) 30%, rgba(234, 234, 239, 1) 80%, rgba(234, 234, 239, 1) 80%, rgba(234, 234, 239, 1) 100%) !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f1f1f4', GradientType=0) !important;
}

.inner-card .why-card-holder {
margin-top: 0;
margin-bottom: 70px;
}

.inner-card h3 {
margin-bottom: 32px !important;
}

.inner-page-why h3 {
margin-bottom: 30px
}

.inner-page-why .left {
padding-right: 40px ;
}

.inner-page-why .right {
padding-left: 40px ;
}

.inner-page-why p {
margin-bottom: 15px;
}

.inner-subscription  a.btn.btn-shodow.btn-deep-blue.large-btn {
margin-top: 50px;
}

/* ::::::::::::::crm-why-end:::::::::::::::::: */

/* ::::::::::::::about-start:::::::::::::::::: */




.about-sec-2 {
  border-top: 3px solid #ebebef;
  
}


.about-sec-3 {
  background-color: #F1F1F4;
}

section.about-sec-3 h3, section.about-sec-3 p {
    margin: 15px 0;
}
/* ::::::::::::::about-end:::::::::::::::::: */

/* :::::::::::::somdwip::::::::::::::::: */



.home-banner-gap {
    padding: 70px 0 100px;
}

#cards.inner-card{
  padding-top: 0
}

.inner-page-why .flex-row-reverse .left{
   padding-left: 40px !important;
}

.inner-page-why .flex-row-reverse .right{
  padding-right: 40px !important
}


#banner img{
  width: 100%
}

.about-sec-3 img{
  width: 100%
}

.about-sec-3 .left{
  padding-right: 50px;
}

.about-sec-3 .right{
  padding-left: 50px
}

label.login{
  width: 100%;
  margin-bottom: 20px
}

label.login:hover .effect{
  -webkit-transform: scale(4,3.5) rotate(20deg);
    -ms-transform: scale(4,3.5) rotate(20deg);
    -o-transform: scale(4,3.5) rotate(20deg);
    transform: scale(4,3.5) rotate(20deg);
   
}

.cont-details{
  margin-top: 40px
}
.cont-details .rows{
  margin: 20px 0
}

.cont-details .rows p{
  margin: 10px 0
}

.cont-details .rows p a{
  color: #18191b
}
.cont-details .rows p a:hover{
  color: #ff5000
}
.cont-details .rows p a i{
  font-size: 20px
}

.cont-details .rows p a.square{
  padding: 8px;
  border: 1px solid #18191b
}

.margin-top{
  margin-top: 15px !important
}

.margin-top a:hover{
   background: #ff5000;
   border: 1px solid #ff5000 !important;
   color: #fff !important
}


.operation{
  margin: 50px 0 !important
}

.video-wrapper{
  padding: 50px 80px;
}

.video-wrapper iframe{
  margin:20px 0
}

.video-wrapper iframe{
  width: 100%;
  height: 300px
}

#why.contact.login form .submit .forgot{
  margin-left: 20px;
  margin-top: 20px
}

.left-block p{
  padding-right: 20px
}

.right-block p{
  padding-left: 20px
}

.about-sec-2 .left-block p{
  column-count: 2;
  grid-column-gap: 35px;
  padding-right: 0
}




/* somdwip-06-01-2020 start */

#publishers .owl-carousel .owl-item .item img {   
    height: 100px;
    object-fit: contain;
}




/* somdwip-06-01-2020 end */


.pl-0{
  padding-left: 0 !important;
}
.pr-0{
  padding-right: 0 !important;
}

.sitemape .navbar-nav{
  display: flex;
  align-items: flex-start;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;

}
.sitemape .nav-item{
  position: relative;
  margin-bottom: 10px;
}
.nav-item li{
  position: relative;
  padding-left: 25px;
}
.nav-item li:after{
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #fff;
  left: 0;
  top: 3px;
  border: 4px solid #0d89b9;
  border-radius: 50%;
  -webkit-transition:  all .5s ease;
  -o-transition:  all .5s ease;
  transition:  all .5s ease;
}
.sitemape .nav-item a{
  padding: 0;
  background: transparent;
  color: #000;
  display: block;
  margin-bottom: 15px;
  -webkit-transition:  all .5s ease;
  -o-transition:  all .5s ease;
  transition:  all .5s ease;
}
.nav-item li:hover:after{
  border: 4px solid #ff5000;
}

.sitemape .nav-item a:hover{
  color:  #ff5000;
}
.sitemape .subMenu{
/*  position: absolute;
  top: 100%;
  width: 220px;*/
  margin-left: 25px;
}

.sitemape .subMenu li{
  display: block;
}

.under{
  position: relative;
  padding-bottom: 10px !important;
  margin-bottom: 20px !important;
}
.under:after{
  position: absolute;
  top: 90%;
  background: #0d89b9;
  width: 50px;
  left: 0;
  height: 4px;
  content: "";

}

/*.banner-graph {
    position: absolute;
    right: 20px;
    bottom: 3vh;
    width: 57% !important;
}*/


