@font-face {
    font-family: "Heebo";
    src: url("../fonts/Heebo/Heebo-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Heebo";
    src: url("../fonts/Heebo/Heebo-Bold.ttf") format('truetype');
    font-weight: bold;
}


@font-face {
    font-family: "Roboto Mono";
    src: url("../fonts/RobotoMono/RobotoMono.ttf") format('truetype');
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto/Roboto-Bold.ttf") format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: "Raleway";
    src: url("../fonts/Raleway/Raleway.ttf") format('truetype');
}


@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald/Oswald.ttf") format('truetype');
}


@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins/Poppins-Bold.ttf") format('truetype');
    font-weight: bold;
}


@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format('truetype');
    font-weight: bold;
}


:root {
    --primary: #4294E3;
    --secondary: #8F12FD;
    --light: #F0F6FF;
    --dark: #262B47;
}

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video
{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section
{
  display: block;
}


ol, ul, li {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
table {border-spacing: 0;}


body {

    font-size: 14px !important;
    font-weight: normal;
    color: #707070 !important;
    line-height: 1.8em;
    background: #fff;
    margin: 0;
    padding: 0;

}

a
{
  color: #1377bb;
  transition: 0.5s;
  text-decoration:none;
}

a:hover,
a:active,
a:focus {
  color:#0368e9;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-size:15px;
  line-height:22px;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


.compulsory
{
    color: #ff5a00 !important;
}

.header-temp
{
		background: rgba(42, 44, 57, 0.9) !important;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, #003e7c, #02225b);
}

.bg-secondary-gradient {
    background:linear-gradient(to bottom right, #003e7c, #02225b);
}

.bg-light {
    background-color: #fff !important;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn:hover, .btn:active, .btn:focus
{
  outline: none !important;
  -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
  -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
  box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.22) !important;
}

.btn.btn-primary
{
    background: #4294e3 !important;
    border-color: #0b7fef !important;
    color: #fff;
}

.btn.btn-primary:hover, .btn.btn-primary:focus
{
    border-color: #0e71a3 !important;
    background: #0f5381 !important;
}


.btn.btn-primary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient {
    background: linear-gradient(to bottom right, #000102, #000000);
	margin-bottom:2rem;

}

.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, #1da7e4, #112b55);
}

.btn.btn-primary-gradient:hover::after {
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    border: none;
    background:linear-gradient(to bottom right, #003e7c, #02225b);
}


.section-head {
  margin-bottom: 60px;
}
.section-head h4 {
  position: relative;
  padding:0;
  color:#2f2f35;
  line-height: 1;
  letter-spacing:0.3px;
  font-size: 34px;
  font-weight: 700;
  text-align:center;
  text-transform:none;
  margin-bottom:30px;
}
.section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background: #4294e3;
  position: absolute;
  left: 0px;
  bottom: -10px;
  right:0;
  margin:0 auto;
}
.section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color:#4294e3;
}

/********** Small icons on top header **************/
.header-icon-box
{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.header-icon-box li
{
    margin-right: 15px;
    float: left;
	color:#01306b;
}

.login-button-icon
{
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}

.signup-button-icon
{
    display: none;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
}

.cart-section
{
    color: #FFFFFF;
    font-size: 26px;
}

.cart-section .fa
{
    margin-top: 5px;
}

.login-box{
	border-radius:25px !important;}

.login-button-header
{
	  background: #000 !important;
    border: none !important;
    color: #fff !important;
    border-radius: 25px !important;
	  padding:5px 15px !important;
	cursor: pointer !important;
}

.login-button-header:hover
{
	background:#000 !important;
}

.signup-button-header
{
	background: #000 !important;
    border: none !important;
    color: #fff !important;
    border-radius: 25px !important;
	  padding:5px 15px !important;
	cursor: pointer !important;
}

.signup-button-header:hover
{
	background:#000 !important;
}



.language_drop_menu
{
    min-width: 115px !important;
    background-color: #FFFFFF !important;
    margin-top: 23px !important;
}

.language_drop_menu li
{
    margin-right: 0px;
	width:100%;
}

.language_drop_menu img
{
    margin-right:5px;
    width:17px;
}

.language_drop_menu a
{
    color: #000000 !important;
	font-size:14px;
}


.user-icon-outer::after
{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: #FFFFFF;
}

.letter-icon-first
{
    text-transform: uppercase;
    font-size: 18px;
    border: 1px solid  #fff;
    padding: 5px 10px;
    border-radius: 10%;
    background-color: #fff;
    color:#012e6a;
    display: inline-block;
	font-style:normal;
}

.letter-icon-second
{
  text-transform: uppercase;
  font-size: 20px;
  border: 1px solid  #01306b;
  padding: 10px 15px;
  border-radius: 10%;
  background-color: #01306b;
  color: #FFFFFF;
  display: inline-block;
  margin-right: 5px;
  font-style:normal;

}

.user_name_pop {
  padding-left: 5px;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.user_email_pop {
  float: left;
  color: #333333;
  font-size: 12px;
}

.user-ul-outer {
  width: 275px;
  height: auto;
  color: #CCCCCC;
  padding: 15px;
  margin-top:20px !important;
  background-color: #FFFFFF !important;
}

.username-li
{
 width: 100%;
 height: 60px;
 border-bottom: 1px solid #CCCCCC;
}

.username-li p
{
 width: 55px;
 float: left;
}

.menu-li
{
    width: 100%;
    height: 30px;
    margin-top: 10px;
}

.menu-li a
{
    padding-left: 5px;
    color: #000000;
}

.menu-li .fa
{
   font-size: 15px;
    margin-right: 10px;
}

.menu-li-account a
{
    	padding-left: 0px !important;
	font-size:14px;
	color:#ff5a00 !important;
}


.menu-li-balance
{
    font-size: 14px;
}

.header-account-icon
{
	font-size:16px;
	margin-right:10px;
	margin-top:3px;
}

.support
{
	float:left !important;
}

.user-sign-out
{
	  border: 1px solid #ccc;
    padding: 5px 15px !important;
    float: right;
    height: 35px;
    width: auto;
  	border-radius:5px;
  	color:#fff !important;
  	line-height:20px;
  	font-size: 14px;
	background:#000;
}


.user-sign-out:hover
{
	background:#000;
	color:#fff !important;
}

.user-icon-outer::after
{
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    color: #FFFFFF;
}

.user-pop-ico
{
	 margin-right: 5px;
}


.username-li p
{
    float: left;
}

.switch-account-button{
	border-radius:5px;
	background:#000;
	padding:5px 10px;
	height:40px;
	text-align:center !important;
	}

.switch-account-button a{
	color:#fff !important;
	}


.switch-account-button:hover{
	color:#fff;
	background:#01326d;
	}



  .sub-admin-wrap-outer
  {
  		background:#dd3a00;
  }

  .sub-admin-wrap
  {
  	padding:10px;
  	background:#01306b;
  	float:left;
  	white-space: nowrap;
  	border:2px solid #01306b;
  	width: 242px;
  }

  .sub-admin-wrap li
  {
  	color:#fff;
  	font-size:14px;
  }

  .sub-admin-wrap .title
  {
  	font-size:18px;
  	border-bottom:2px solid #fff;
  	color:#fff;
  }

  @media only screen and (max-height: 540px)
  {
  		.user-ul-outer
  		{
  				overflow-y : auto;
  				height:230px;
  		}
  }



@media only screen and (max-width: 1099px)
{
    .login-button-header, .signup-button-header
    {
        display: none;
    }

    .login-button-icon, .signup-button-icon
    {
        display: block;
    }

}


@media only screen and (max-width: 767px)
{
    .header-icon-box
    {
        position: relative;
        right: 25px;
    }

    .header-icon-box li
    {
        margin-right: 15px;
    }
}


@media only screen and (max-width: 480px)
{
    .header-icon-box li
    {
        margin-right: 12px;
    }
}
/********** Small icons on top header **************/


/*************** Notification Bell && Page *************/
.notification-box
{
	  position: relative;
    margin-top: 3px;
}

.notification-bell
{
	font-size:25px;
  color:#5da4ff;
  cursor: pointer;
}

.notification-round-box
{
	  position: absolute;
    right: 0px;
    top: -5px;
    cursor: pointer;
    width: 15px;
    height: 15px;
    text-align: center;
}

.notification-round
{
	font-size: 18px;color:#57a4ff;
}

.notification-count
{
    font-size: 10px;
    color: #FFFFFF;
    position: absolute;
    font-weight: bold;
    cursor: pointer;
    left: 5px;
}

.notification-round-readed
{
	font-size: 18px;
  color: #5da4ff;
}

.notification-div {
    min-height: 27px;
    border: 1px solid #c5c1ff;
    background-color: #ecebff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.notification-div-inner
{
    float: left;
    word-break: break-all;
	  position:relative;
    padding: 10px 0px;
}

.notification-div-inner i
{
    font-size: 17px;
    width: 25px;
    height: 20px;
    text-align: center;
    position: absolute;
    color:#01326e !important;
}

.notification-div-content
{
    padding-left: 30px;
}
/*************** Notification Bell && Page *************/


/******************* Login/Register/Forgot password/Register Success/Confirmarion Email,Recover Password Sections ********/
.login
{
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  background-image: url('../images/login-bg.jpg');
}

.register
{
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-image: url('../images/register-bg.jpg');
}



.forgot-password {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  background-image: url('../images/forgot-password.jpg');
}

.forgot-password::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(93,84,240,0.5);
  background: -webkit-linear-gradient(left, rgb(12 98 143 / 50%), rgb(0 114 255 / 50%));
  background: -o-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
  background: -moz-linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
  background: linear-gradient(left, rgba(0,168,255,0.5), rgba(185,0,255,0.5));
  pointer-events: none;
}

.checkout-result
{
    background-image: url('../images/register-bg.webp');
}

.normal-dialog
{
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-image: url('../images/register-bg.webp');
}


.login p
{
  	padding-bottom:0px;
  	color: #393f81;
    display:inline-block;
    margin: 0px 0 10px 0;
}

.login h5 {
    font-size: 1.2rem;
    text-align: left;
}

.register h5 {
    font-size: 1.2rem;
    text-align: left;
}

.forgot-password h5
{
    font-size: 1.2rem;
    text-align: left;
}



.register .form-outline
{
    position: relative;
}

.register .form-outline .icon
{
    width: 35px;
    height: 40px;
}

.register-input
{
    height: 40px;
    border-radius: 0 5px 5px 0;
    width: calc(100% - 35px);
}

.register .compulsory
{
    color: #e0112e !important;
    font-weight: 700;
    position: absolute;
    right: 0px;
    top: 0px;
}

#resend_report
{
    font-size: 14px;
    padding: 10px 0px;
    text-align: center;
    color: green;
}

.resend-loading
{
    text-align: center;
    padding-top: 10px;
    display: none;
}

.button-grad
{
	  width: 100%;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
	  display:block;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	  background-image: linear-gradient(to right, #186aff, #7400ea, #7104eb, #0e58f0);
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
  	padding:10px;
  	margin-top:25px;
  	text-decoration:none;
}

.button-grad:hover
{
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	  color:#FFFFFF;
}


.login-box-color, .forgot-password-color, .register-color, .normal-dialog-color
{
    background-color: #FFFFFF;
    position: relative;
}

.box-close
{
    width: 25px;
    height: 25px;
    color: #FFFFFF;
    cursor: pointer;
    position: absolute;
    top: -13px;
    right: -13px;
    background-color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.box-close a
{
    color: #FFFFFF;
}

.dialog-popup
{
	display:block;
}

.login-submit, .forgot-password-submit, .register-submit
{
    width: 100%;
}

.dialog-popup-a h2
{
    font-weight: 700;
    font-size: 24px;
}

.btn-block
{
  	margin: 5px auto;
  	display: block;
}

.form-outline .icon
{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    background:#033b83;
    font-size: 20px;
    border-radius: 5px 0 0 5px;
    float: left;
	  color:#fff;
}

.login-input, .forgot-password-input
{
    height: 48px;
    border-radius: 0 5px 5px 0;
    width: calc(100% - 48px);
}

.login-register a{
	color:#033b83!important}

.forgot-password-url
{
  	color: #033b83!important;
    font-size: .85rem;
  	margin-right:15px;
	float:right;
  	display: inline-block;
}

/******************* Login/Register/Forgot password/Register Success/Confirmarion Email,Recover Password Sections ********/


/************ Animation in index/advertiser/publisher/contactus etc pages ****************/
.gradient-banner {
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
  margin-bottom:5rem;
}

.gradient-banner::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background-image: linear-gradient(45deg, #009EC5 0%, #2e7eed 20%, #02225B 50%);
}

.gradient-banner h1{
	text-align:left;
	font-size: 4rem;}

.gradient-banner p{
	text-align:left;
	font-size: 1.3rem;
	line-height:1.8rem;}

.gradient-banner .content-sec{
	padding:2rem 3rem;}

.gradient-banner .btn{
	float:left !important;}


.shapes-container {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shapes-container .shape {
  position: absolute;
}

.shapes-container .shape::before {
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  position: absolute;
  border-radius: 50px;
}

.shapes-container .shape:nth-child(1) {
  top: 2%;
  left: 11%;
  width: 400px;
  height: 70px;
}

.shapes-container .shape:nth-child(2) {
  top: 19%;
  left: 18%;
  width: 200px;
  height: 15px;
}

.shapes-container .shape:nth-child(3) {
  top: 80%;
  left: 4%;
  width: 300px;
  height: 60px;
}

.shapes-container .shape:nth-child(4) {
  top: 85%;
  left: 15%;
  width: 100px;
  height: 10px;
}

.shapes-container .shape:nth-child(5) {
  top: 5%;
  left: 50%;
  width: 300px;
  height: 25px;
}

.shapes-container .shape:nth-child(6) {
  top: 4%;
  left: 52%;
  width: 200px;
  height: 5px;
}

.shapes-container .shape:nth-child(7) {
  top: 80%;
  left: 70%;
  width: 200px;
  height: 5px;
}

.shapes-container .shape:nth-child(8) {
  top: 55%;
  left: 95%;
  width: 200px;
  height: 5px;
}

.shapes-container .shape:nth-child(9) {
  top: 50%;
  left: 90%;
  width: 300px;
  height: 50px;
}

.shapes-container .shape:nth-child(10) {
  top: 30%;
  left: 60%;
  width: 500px;
  height: 55px;
}

.shapes-container .shape:nth-child(11) {
  top: 60%;
  left: 60%;
  width: 200px;
  height: 5px;
}

.shapes-container .shape:nth-child(12) {
  top: 35%;
  left: 75%;
  width: 200px;
  height: 5px;
}

.shapes-container .shape:nth-child(13) {
  top: 90%;
  left: 40%;
  width: 300px;
  height: 45px;
}

.shapes-container .shape:nth-child(14) {
  top: 54%;
  left: 75%;
  width: 200px;
  height: 5px;
}

.shapes-container .shape:nth-child(15) {
  top: 50%;
  left: 90%;
  width: 200px;
  height: 5px;
}

.shapes-container .shape:nth-child(16) {
  top: 50%;
  left: 81%;
  width: 100px;
  height: 5px;
}



/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-right: 30px;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/screenshot-frame.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), #0f6696);
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Hero Header ***/


@media only screen and (max-width: 767px) {
.gradient-banner{
	padding:50px 0 0px;}

.gradient-banner h1{
   font-size:2.5rem;
   text-align:center;}

.gradient-banner p{
   text-align:center;}


.gradient-banner .btn {
    float: none !important;
}

.shapes-container{
	display:none;}
}

/************ Animation in index/advertiser/publisher/contactus etc pages ****************/


/**************** Section common *************/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 25px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fd9042;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2a2c39;
}

@media only screen and (max-width:767px)
{
    .section-title h2::after
    {
    	 margin-top:25px;
    }
}

@media only screen and (max-width :991px)
{
    .section-title p
    {
      	font-size:25px;
      	line-height:30px;
    }
}

@media only screen and (max-width :480px)
{
  .section-title h2::after{
  	margin-top:20px;}

  .section-title p {
      font-size: 20px;}

  .section-title h2{
  	margin-bottom:7px;}
}
/**************** Section common *************/

/***************** Header ****************/
.header-class {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(42, 44, 57, 0.9);
}
.header-class.header-transparent {
  background: transparent;
}
.header-class.header-dark {
     background-color:#000000;
}
.header-class.header-scrolled {
  background: rgba(42, 44, 57, 0.9);
  z-index: 9999;
}
.header-class .logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
.header-class .logo h1 a, .header-class .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
.header-class .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

/**
* Desktop Navigation
*/

.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  float: right;
}
.navbar li{
  position: relative;
}


li:hover {
  /*border-bottom: 3px solid #FFFFFF;*/
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  padding: 5px 0px 5px 0px;
  margin-left: 10px;
  margin-right:10px;
  font-size: 16px;
  color: #ffffff;
  transition: 0.3s;
  border-radius: 0px;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  background: none;
    color: #fff;
    border-bottom: 3px solid #fff;
    border-radius: 0px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 5px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #2a2c39;
  margin: 0px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0d1eb6;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
  color: #FFFFFF;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.logo-desktop
{
    display: block;
}

.logo-mobile
{
    display: none;
}

.dropdown-toggle::after{
	color:#fff !important;}

@media only screen and (max-width: 1366px)
{
    .navbar .dropdown .dropdown ul
    {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul
    {
        left: -100%;
    }
}

@media only screen and (max-width:991px)
{
    .navbar a i, .navbar a:focus i
    {
      margin-left:0px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px)
{
    .home-class
    {
        display: none;
    }
}

@media only screen and (max-width: 767px)
{
    .navbar-collapse
    {
      	margin-bottom:15px;
      	margin-top:15px;
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu
    {
        position: absolute;
        z-index: 99999999;
    }

    .mobile-nav-toggle {
      display: block;
    }

    .navbar ul {
      display: none;
    }

    .navbar {
      position: fixed;
      right: 10px;
    }

    .drop-down-mob
    {
      	position:relative !important;
      	display:block;
      	width:98%;
    }

    .navbar-mobile .dropdown > .dropdown-active
    {
      	width:100% !important;
        animation: none;
    }

    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a
    {
        background: unset;
        border-bottom: 0px;
    }

    .navbar-mobile a, .navbar-mobile a:focus
    {
        border-radius: 0px;
    }

    .logo-desktop
    {
        display: none;
    }

    .logo-mobile
    {
        display: block;
    }
}

/**
* Mobile Navigation
*/
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: -100%;
  padding: 45px 0 0;
  background-color: #191919;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 100%;
  width: 250px;

  animation: navbar-height 0.5s ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes navbar-height {
  from {right: -100%;}
  to {right: 0px;}
}

.navbar-mobile .dropdown-item
{
    color: #FFFFFF !important;
}

.navbar-mobile  .home-class
{
    border-top: 1px rgba(255, 255, 255, 0.2) solid;
}

.navbar-mobile .navbar-height .nav-item
{
    border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
    text-transform: uppercase;
}

.navbar-mobile .navbar-height .drop-down-mob
{
    margin-top: 1px;
}

.navbar-mobile .navbar-height .drop-down-mob a
{
    border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
    margin-left: 0px;
    padding-left: 35px !important;
}

.navbar-mobile .dropdown-toggle::after
{
    position: absolute;
    right: 10px;
}

.navbar-mobile .fa-times
{
    font-size: 20px;
    top: 22px;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 15px;
  color: #FFFFFF;

}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ff7a1d ;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  padding: 0px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #191919;
  box-shadow: unset;
  border: 0px;
  margin: 0px;
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ffffff;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


@media only screen and (max-width:576px)
{
    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a
    {
        color: #ff7a1d;
    }

    .navbar-mobile .dropdown ul
    {
    	  width:93%;
    }

    .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a
    {
        color: #ff7a1d !important;
    }
}

@media only screen and (max-width: 420px)
{
    .header-class .logo h1
    {
        font-size: 15px;
    }
}

/***************** Header ****************/


/************** Index page about section **************/
/**** About ****/

#about h1{
	font-size:2.5rem;
	color:#262B47;}

#about h5{
	color:#0c7bb7;
	font-size:1.5rem;
}


/*** Feature ***/

#feature{
	padding: 0 0 0px 0;
    position: relative;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: cover !important;
    background:linear-gradient(rgb(1 49 109 / 65%), rgb(1 43 101 / 40%)), url(../images/features-bg.jpg) fixed center center;}

#feature h1{
	color:#fff;
	font-size:2.5rem;}

#feature h5{
	font-size:1.25rem;}

.feature-item {
    transition: .5s;
	min-height:270px;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.feature-item .rounded-circle
{
    width: 60px;
    height: 60px;
}

#advertiser-features .rounded-circle
{
    width: 100px;
    height: 100px;
}
/************** Index page about section **************/

/******************** Advertiser in index and advertiser pages ****************/

/**** Advertiser **************/

#advertiser h1{
	font-size:2.1rem;
	color:#262B47;}

#advertiser h5{
	color:#0c7bb7;
	font-size:1.8rem;}


#advertiser-features{
	background:linear-gradient(to bottom right, #003e7c, #02225b)}

#advertiser-features h5{
	font-size:1.25rem;
	color:#262B47;}

#advertiser-features .box{
	min-height:185px;}

#advertiser-features .box .icon-circle{
	background:#fff;
	width:85px;
	height:85px;}


#advertiser-features .box .icon-circle .text-gradient{
	color:#3496c9;
	font-size:2.5rem;}

@media only screen and ( max-width: 767px)
{
  #advertiser .slider
  {
	   display:none !important;
  }

  .gradient-banner .slider
  {
  	display:none !important;
  }
}
/******************** Advertiser in index and advertiser pages ****************/
/**** Publisher ******/

#publisher h1{
	font-size:2.5rem;
	color:#262B47;}

#publisher h5{
	color:#0c7bb7;
	font-size:1.8rem;}




/*** Pricing ***/

.pricing{
	padding:60px 0px;
	background:linear-gradient(to bottom right, #104976, #0067a3);}



.pricing h1{
	font-size:2.5rem;}

.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  min-height:465px;
  margin-right:10px;
}
.pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing .box p{
	margin-bottom:0px;
	padding-bottom:0px;}
.pricing h3 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 0px;
}
.pricing .price {
  font-size: 36px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing img {
  padding: 30px 40px;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}
.pricing ul li {
  padding-bottom: 10px;
}
.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #4154f1;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #4154f1;
}
.pricing .btn-buy:hover {
  background: #4154f1;
  color: #fff;
}
.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #4154f1;
  color: #fff;
}


.pricing h5{
-webkit-text-fill-color: #fff !important;}


.pricing h1{
	color: #fff !important;}


.pricing .carousel-indicators {
    bottom: -60px;
}


@media only screen and ( max-width : 767px)
{
    .pricing .box
    {
	     margin-bottom:30px;
    }
}


@media only screen and (max-width: 767px)
{
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media only screen and (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
      transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/**************** Testimonial Section **************/

#testimonial{
    padding: 0 0 0px 0;
    position: relative;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: cover !important;
    background:linear-gradient(rgb(2 7 24 / 80%), rgb(2 2 2 / 70%)),  url(../images/testimonial.webp) fixed center center;}

#testimonial h1{
	color:#fff;
	font-size:2.5rem;}

#testimonial h5{
	color:#62c6ff;
	font-size:1.5rem;}

#testimonial p{
	color:#fff;}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, #123072, #0d4f72);
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}



.testimonial-carousel .owl-item.center .testimonial-item a {
    color: #91d3ff !important;
}
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background:#000;
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, #0f3f72, var(--primary));
}

.testimonial-item .profile-picture
{
    width: 85px !important;
    height: 85px !important;
}

/**************** Testimonial Section **************/

/*********************** Slider Section ********************/

.customer-logos{
	padding-top: 0px;
}

.customer-logos .slide{
	float:left ;
	margin-right:10px;
}

/*********************** Slider Section ********************/

/*************** Advertiser page *******************/

.inner-hero-header {
    margin-bottom: 0rem;
    padding: 12rem 0 0 0;
    background:url(../images/bg-circle.png),url(../images/bg-triangle.png),linear-gradient(45deg, #009EC5 0%, #2e7eed 20%, #02225B 50%);
    background-position:left 0px top 0px, right 0px top 50%,center bottom;
    background-repeat: no-repeat;
}

.inner-hero-header h1{
	font-size:3rem;}

.inner-hero-header p{
	font-size:18px;}

.inner-hero-header h2{
	font-size:1.5rem;}


#inner-content .btn.btn-primary-gradient {
    background: linear-gradient(to bottom right, #000102, #000000);
    margin-bottom: 2rem;
    float: none !important;
    margin: auto !important;
    display: table !important;
}


#inner-content h1{
	font-size:2.1rem;
	color:#262B47;
	text-transform:none;}

@media only screen and (max-width: 991px)
{
    .inner-hero-header
    {
	     padding-top:5rem !important;
	     padding-bottom:5rem !important;
    }
}
/*---------- Features Section Advertiser Page ---------*/

#features-advertiser{
	background:#e7f4f9;}

#features-advertiser h5{
	font-size:1.5rem;
	color:#262B47;}

#features-advertiser .box{
	min-height:225px;}

#features-advertiser .box .text-gradient{
	color:#3496c9;
	font-size:2.5rem;}

#features-advertiser .bg-light {
    background-color: #fff !important;
    border: 3px solid #cadde5;
}

#features-advertiser .pt-5 {
    padding-top: 1.5rem !important;
}

/*--------------------------------------------------------------
# Advertiser Features
--------------------------------------------------------------*/
/*------- Advertiser Features ----------*/
#advertiser-keyfeat{
	background:linear-gradient(rgb(9 66 94 / 65%), rgb(5 58 84 / 40%)), url(../images/advertiser-feat.webp) fixed center center; background-repeat:no-repeat; background-size:cover;}

#advertiser-keyfeat h1{
	color:#fff !important;
	font-size:2.5rem;}

#advertiser-keyfeat h5{
	color:#fff !important;
	font-size:1.5rem;}

.adv-features .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  min-height:360px;
}
.adv-features .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: linear-gradient(45deg, #4588ff 0%, #055cd5 20%, #013faf 50%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}
.adv-features .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}
.adv-features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.adv-features .icon-box h4 {
  color: #151515;
  transition: ease-in-out 0.3s;
}
.adv-features .icon-box h4:hover {
  color:#4294e3;
}
.adv-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.adv-features .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*----- Accordian Section Starts -----*/
#accordian-advertiser{
	padding:5rem 0 !important;}

#accordian-advertiser h1{
	font-size:2.5rem;
	color:#262B47;}


#accordian-advertiser h5{
	font-size:1.5rem;}

#accordian-advertiser img {
    height: 100%;
    width: 95%;
    object-fit: cover;
    border-radius: 10px;}


#accordian-advertiser .accordion-item {
    background-color: #e1f6ff;
    border: 3px solid rgb(201 238 255);
}


#accordian-advertiser .accordion-button:not(.collapsed) {
    color: #054f97;
    background-color: #bbeaff;}

#accordian-advertiser .accordion-button{
	color: #284b67;
    background-color: #8fd1ef;}

#accordian-advertiser p {
    color: #5c6d74;
}

@media only screen and ( max-width : 767px)
{
    #accordian-advertiser .accordion-button
    {
    	margin-top:0px;
    }

    #accordian-advertiser img
    {
    	margin-bottom:30px;
    }
}


/*--------------------------------------------------------------
# Targeting Section
--------------------------------------------------------------*/

#targetin-options{
	margin:0px;
	background:linear-gradient(to bottom right, #104976, #0067a3);}

#targetin-options h1{
	font-size:2.5rem;}

.targetin-options .img {
  border-radius: 8px;
  overflow: hidden;
}
.targetin-options .img img {
  transition: 0.6s;
}
.targetin-options .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background:rgba(255,255,255, 0.9);
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 16px rgb(2 26 50);
  border: 3px solid rgba(255,255,255,0.5);
  min-height:255px;
}
.targetin-options .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: rgb(2 46 105);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    border: 6px solid rgb(6 72 161 / 50%);
}
.targetin-options .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.targetin-options .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.targetin-options .targeting-item:hover .details h3 {
  color: var(--color-primary);
}
.targetin-options .targeting-item:hover .details .icon {
  background: rgb(255 255 255);
  border:2px solid rgb(2 46 105);
}
.targetin-options .targeting-item:hover .details .icon i {
  color: rgb(2 46 105);
}
.targetin-options .targeting-item:hover .img img {
  transform: scale(1.2);
}

/*************** Advertiser page *******************/

/************** Publisher page ****************/

.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border:5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
	min-height:320px;
}
.item:hover{
    background:#4294e3;
    box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover .item, .item:hover span.icon{
    background:#fff;
    border-radius:10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover h6, .item:hover p{
    color:#fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.item .icon {
    font-size: 40px;
    margin-bottom:25px;
    color: #f91942;
    width: 90px;
    height: 90px;
    line-height: 75px;
    border-radius: 50%;
	padding:10px;
	display:inline-block;
}
.item .feature_box_col_one{
    background:rgba(247, 198, 5, 0.20);
    color:#1479db;
}
.item .feature_box_col_two{
    background:rgba(255, 77, 28, 0.15);
    color:#1479db;
}
.item .feature_box_col_three{
    background:rgba(0, 147, 38, 0.15);
    color:#1479db;
}
.item .feature_box_col_four{
    background:rgba(0, 108, 255, 0.15);
    color:#1479db;
}
.item .feature_box_col_five{
    background:rgba(146, 39, 255, 0.15);
    color:#1479db;
}
.item .feature_box_col_six{
    background:rgba(23, 39, 246, 0.15);
    color:#1479db;
}
.item p{
    font-size:15px;
    line-height:26px;
}
.item h6 {
    margin-bottom:20px;
    color:#2f2f2f;
	font-size:1rem;
}

/*------- Publisher Accordian ----------*/
#pub-accordian{
	background:linear-gradient(rgb(9 66 94 / 65%), rgb(5 58 84 / 40%)), url(../images/publisher-adformat.webp) fixed  left top no-repeat;
	background-size: cover;}

#pub-accordian h1{
	color:#fff !important;
	font-size:2.5rem;}

#pub-accordian h5{
	color:#fff !important;
	font-size:1.5rem;}


#pub-accordian .accordion-button{
	margin-top:0px !important;}


#pub-accordian img{
	float:none;
	margin:auto;
	display:block;}

#pub-accordian .accordion-button:focus {
    border-color: #1479db;}


#pub-accordian .accordion-button:not(.collapsed) {
    color: #012c67;
    background-color: #d5e9ff !important;
    box-shadow:none !important;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding:3rem 0;
}
.featured-services .icon-box {
  padding: 20px;
  color: #5f687b;
  background:#e7f4f9;
  border-radius: 4px;
  border: 3px solid #d6eefd;
  transition: 0.3s;
  height: 100%;
}
.featured-services .icon {
  margin: 0 0 15px 0;
}
.featured-services .icon i {
  color: #3394d1;
  font-size: 36px;
}
.featured-services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title {
  color: #5f687b;
  transition: 0.3s;
}
.featured-services .icon-box:hover {
  border-color: #a2dbff;
}
.featured-services .icon-box:hover .title {
  color:#4294e3;
}
.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/************** Publisher page ****************/


.fabs {
  top: 100px;
  position: fixed;
  margin:0;
  right: 0;
  z-index: 998;
}

.fabs .theme-list-selected
{
    background:#02225b;
}

.fabs .theme-list-selected a
{
    color: #FFFFFF;
}

.fabs a:hover {
  cursor: pointer;
}

.fab {
  display: block;
  text-align: center;
  color: #f0f0f0;
  margin: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  position: relative;
  z-index: 998;
  background:linear-gradient(to bottom right, #003e7c, #02225b);
  padding:10px 20px;
  border-radius: 20px 0px 0px 20px;
  border: 3px solid #acbdc7;
  border-right: none;
  font-size:16px;
}

.fab .label-div
{
    display: inline;
    position: relative;
    bottom: 2px;
}

.fab:hover{
	background:#000;
	color:#fff;}

.fab i{
	margin-right:5px;}


/************* Contact Us Page ************/
.contact-wrap {
  background: #fff; }

.contact-wrap .form-control {
  height: 40px;
  background: transparent;
  color: rgb(255 255 255 / 80%) !important;
  font-size: 14px;
  border-radius: 0px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

 .contact-wrap .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.5) !important; }

 .contact-wrap .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.5) !important; }

 .contact-wrap .form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.5) !important; }

 .contact-wrap .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.5) !important; }

 .contact-wrap .form-control:focus, .form-control:active {
    background: transparent;
    border-color:rgb(41 201 227 / 30%) !important;
	color:#fff; }

.contact-wrap textarea.form-control {
  height: inherit !important; }


.contact-us-form
{
	border:2px solid #ccc;
	background:linear-gradient(to bottom right, #003e7c, #02225b);
	color:#fff;
}

.contact-wrap h3
{
    color: #000;
}

.contact-wrap .form-group
{
    margin-bottom: 1rem;
}

/************** Contact us page ***************/

/************** Cookie Policy On Footer ***************/
.cookie-class
{
	position: fixed;
	bottom: 0px;
	height: auto;
	width: 100%;
	background-color:#3e404c;
	color: #FFFFFF;
	text-align:center;
	padding-top: 10px;
	padding-bottom: 5px;
	display: none;
	z-index:99;
}


.cookie-class a
{
	color:#9bc4ff;
}

.cookie-policy-button
{
   	color: #fff !important;
    background-color: #01336f !important;
    border-color:#01336f !important;
    font-weight: 700 !important;
    font-size: 12px;
    border-radius: 2px !important;
    padding: 5px 10px;
	  outline: 0;
	  cursor: pointer;
}
/************** Cookie Policy On Footer ***************/

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/************** Footer Section ****************/
.footer {
        padding-top:2rem;
        background:
          url(../images/bg-circle.png),
          url(../images/bg-triangle.png),
          linear-gradient(to bottom right, #101010, #202020);
        background-position:
        left 0px bottom 0px,
        right 0px top 50%,
        center top;
        background-repeat: no-repeat;
}

.footer p{
	margin-bottom:10px;}

.footer i{
	margin-right:5px;}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
	display:inline-block;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-social i{
	line-height:25px;
	text-align:center !important;
	margin:0px !important;}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
	text-decoration:none;
}
.footer .list-ico{
	display: inline-block;
    float: left;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/***************** Footer Section ****************/


/************** Back to top button *************/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:linear-gradient(to bottom right, #003e7c, #02225b);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  text-align:center !important;
	margin:0px !important;
}
.back-to-top:hover {
  background: #666;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/************** Back to top button *************/

/************** Newsletter Section *************/
#email_subscription .form-outer
{
    background: #2c2c2c;
    border-radius: 20px;
    border: 1px solid #2d2d2d;
}


#email_subscription .form-input-text
{
	width: 220px;
	margin-bottom: 5px;
	margin-right: 5px;
	float: left;

}

#email_subscription .form-input-text input[type=text]
{
    border-radius: 2px;
}

#email_subscription .news_letter_button
{
   border-radius:5px;
   padding: 5px;
	 background: linear-gradient(to bottom right, #003e7c, #02225b);
   border-color: #012a65;
	 color:#fff;
}

@media only screen and (max-width: 767px)
{
    #email_subscription .form-input-text
    {
        width:100%;
    }

    #email_subscription .form-input-button
    {
        float:none !important;
    }
}
/************** Newsletter Section *************/

.contact-us-form button[type=submit] {
    background: #000;
    border: 0;
    padding: 10px 24px;
    color: #ffffff;
    transition: 0.4s;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 18px !important;
}

.contact-us-form button[type=submit]:hover{
	background:#fff;
	color:#000;
}

.notification
{
	font-size: 14px;
	color:#2373df;
}

.green
{
    color: green;
}

.red
{
    color: red;
}

.form-label
{
    font-size: 14px;
    color: #212529;
}
/******* 5189 lines *********/
