body{
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}
h1{
    font-weight: 700;
    font-family: Armata, "Arial Narrow Bold", Arial, sans-serif;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 1px;
    font-size: 36px;
}
h2,h3,h4,h5{
    font-size: 30px;
    font-weight: 600;
    font-family: Armata, "Arial Narrow Bold", Arial, sans-serif;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 1px;
}
h6{
    font-size: 22px;
}
ul li{
    list-style: none;
}
ul li a{
    text-decoration: none;
}
a{
	text-decoration:none;
}
button{
    outline: none;
    border: none;
    box-shadow: none;
}
.custom-container{
	padding-left:150px;
}
/* preloader start */
#preloader {
	background-color: #111111;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
}
  #loader {
      display: block;
      position: relative;
      left: 50%;
      top: 50%;
      width: 150px;
      height: 150px;
      margin: -75px 0 0 -75px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #9370DB;
      -webkit-animation: spin 2s linear infinite;
      animation: spin 2s linear infinite;
  }
  #loader:before {
      content: "";
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #BA55D3;
      -webkit-animation: spin 3s linear infinite;
      animation: spin 3s linear infinite;
  }
  #loader:after {
      content: "";
      position: absolute;
      top: 15px;
      left: 15px;
      right: 15px;
      bottom: 15px;
      border-radius: 50%;
      border: 3px solid transparent;
      border-top-color: #FF00FF;
      -webkit-animation: spin 1.5s linear infinite;
      animation: spin 1.5s linear infinite;
  }
  @-webkit-keyframes spin {
      0%   {
          -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          transform: rotate(0deg);
      }
      100% {
          -webkit-transform: rotate(360deg);
          -ms-transform: rotate(360deg);
          transform: rotate(360deg);
      }
  }
  @keyframes spin {
      0%   {
          -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
          transform: rotate(0deg);
      }
      100% {
          -webkit-transform: rotate(360deg);
          -ms-transform: rotate(360deg);
          transform: rotate(360deg);
      }
  }
/* header section start */
.header{
/*    background-color: #13916d;*/
    width: 100%;
    font-family: Armata, sans-serif;
}
.header-menu-list-2{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
}
.header-menu ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 25px;
    padding-left: 0px;
    margin-bottom: 0px;  
    padding: 10px 0px;
}
.header-menu ul li a{
    font-size: 16px;
    color: #ffffff;
	transition:all 0.5s;
}
.header-menu ul li a i{
    padding-right:6px;
}
.header-menu ul li a:hover{
    text-decoration: none;
    color: #abb8c3;
}
.header-menu ul li a i:hover{
    color: #ffffff !important;
}
.header-link-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    margin-bottom:0px;
}
.header-link-icon li{
    padding: 0;
    min-width: 40px;
    text-align: center;
    padding: 10px 0px;
}
.header-link-icon li a{
    display: inline-block;
}
.header-link-icon li a i{
    color: #ffffff;
    font-size: 12px;
}
.header-link-icon li:hover{
    background-color:#3b5998;
}
/* business section start  */
.busines-wrapper-logo{
    background-color: #ffffff;
}
.yyc-btn-logo a img{
    padding-top: 15px;
    padding-bottom: 20px;  
}
/* footer css start */
.footer{
    background-color:  #7a77f0;
     width: 100%;
     height: auto;
     padding-bottom: 30px;
     position: relative;
}
.footer-inner-wrapper p{
   text-align: center;
   color: #ffffff;
   padding-top: 70px;
   line-height: 40px;
   font-size: 36px;
}
.footer-link{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    margin-top: 30px;
}
.footer-link li a i{
    color: #ffffff;
    font-size: 25px;
}
.footer-copyright{
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    padding-top: 10px;
}
/* kv new css */
.openBtn {
    cursor: pointer;
  }
  

  
  .overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
  }
  #myOverlay.main{
    opacity:1;
    transform:translate(0px, 0px) scale(1, 1);
  }
  
  /*.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
  }*/
  
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 40px;
    cursor: pointer;
    color: #ffffff;
    background-color: #111111;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }
 /* .overlay .closebtn:hover {
    color: #ccc;
  }*/
  
 /* .overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
  }
  
  .overlay input[type=text]:hover {
    background: #f1f1f1;
  }*/
  
  /*.overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
  }
  */
 /* .overlay button:hover {
    background: #bbb;
  }
*/
  #sidebar {
    height: 0;
    opacity: 0;
    transition: transform .1s ease-in-out, opacity .1s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 100%;
    float: left;
}


/*search filter*/

.overlay .overlay-content{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    margin: -51px 0 0 -20%;
}
.overlay .overlay-content input{
    padding: 0 25px 0 10px;
    border: none;
    border-bottom: 1px solid #888;
    font: italic 30px georgia, serif;
    margin-top: 15px;
    color: #000;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
}

.overlay .overlay-content .filter-btn{
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 40px;
    padding: 0;
    border: none;
    margin-top: 15px;
    color: #000;
    font-size: 24px;
   
    background-color: transparent;
}
.overlay .overlay-content input:focus{
    box-shadow: inherit;
}

/*menu*/

.features-sub-menu-btn .uk-inline ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    flex-wrap: wrap;
    row-gap: 15px;
}
.features-sub-menu-btn .uk-inline ul li{
    width: 16%;
}
.features-sub-menu-btn .uk-inline ul li .my-menu .uk-dropdown{
    padding: 12px 0px;
}
.features-sub-menu-btn .uk-inline ul li .my-menu .uk-dropdown a{
    display: block;
    color: #333333;
    padding: 12px;
    padding: 6px 12px;
    text-decoration: none;
}
.featured-slider-collage .features-sub-menu-btn {
    margin-top: 35px;
}
.featured-slider-collage .features-sub-menu-btn .uk-inline {
    width: 100%;
}
.features-sub-menu-btn .uk-inline ul li .my-menu button {
    text-transform: capitalize;
/*    background: #13916d;*/
    color: #ffffff;
    font-size: 16px;
    width: 100%;
    padding: 4px 0px;
    border-radius: 6px;
}
.features-sub-menu-btn .uk-inline ul li .my-menu button .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* #cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;                                 
} */
.menu-bar{
/*    background: #13916d;*/
    display: block;
    width: 100%;
    padding: 10px 15px 8px;
}
#cssmenu ul li {
    border-bottom: 1px solid #1c73ea;
    width: 100%;
    float: left;
    overflow: hidden;
}

#cssmenu ul li.has-sub ul li {
    /* padding: 14px 0px; */
    border-bottom: 1px solid #b7dbf9;
    background: #ddebf7;
    overflow: hidden;
}



#cssmenu ul li.has-sub ul li a {
    padding: 14px 34px;
}

#cssmenu ul li.has-sub ul li .m-sub-dropdown li {
    border-bottom: 1px solid #b7dbf9;
}

#cssmenu ul li.has-sub ul li .m-sub-dropdown li a {
    padding: 14px 50px;
}

#cssmenu ul li.has-sub ul li a {
    color: #111;
    font-weight: 300;
    font-size: 14px;
    /* transform: translateX(20px); */
}

#cssmenu {
    width: 100%;
    height: 100%;
    color: #ffffff;
}
#cssmenu ul {
    width: 100%;
    height: 100%;
}
#cssmenu ul li{
    width: 100%;
   display: block;
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #444;
    padding: 0;
    border-bottom: 1px solid #ddd;
}
#cssmenu ul li a{
    display: block;
    color: #222;
    padding: 5px 10px;
    line-height: 23px;
    font-size: 14px;
    text-decoration: none;
    width: 97%;
    float: left;
    overflow: hidden;
    
}
#cssmenu ul li span {
    float: left;
    width: 3%;
    border-left: 1px solid #ccc;
    padding: 9px 0px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    overflow: hidden;
}
#cssmenu ul li .login-dropdown{
    display: none;
    
}
#cssmenu ul li .login-dropdown a {
    width: 100%;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
}
#cssmenu ul {
    border: 1px solid #ddd;
    border-bottom: none;
    margin-bottom: 3px;
    padding: 0;
}
#cssmenu input:focus{
    box-shadow: none;
    border-color: #ced4da;
}

#cssmenu ul ul {
    display: none;
}

#cssmenu>ul>li.active>ul {
    display: block;
}

.align-right {
    float: right;
}

#cssmenu>ul>li>a {
    font-size: 18px;
    color: #111;
    text-align: left;
    padding: 10px 14px;
    font-weight: 200;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}



/* #cssmenu>ul>li>a span:before,
#cssmenu>ul>li>a span:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -9px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.1);
} */

#cssmenu>ul>li>a span:after {
    bottom: -14px;
    margin-left: -10px;
    border-top: 10px solid #4d3abe;
}

#cssmenu>ul>li>a:hover span {
    opacity: 1;
    bottom: 70px;
}

#cssmenu>ul>li>a:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
}

/* #cssmenu>ul>li:last-child a:after {
    display: none;
} */

/* #cssmenu>ul>li>a:hover,
#cssmenu>ul>li.active>a {
    color: #4d3abe;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
} */
.menu-bar svg{
    width: 20px;
    fill:#ffffff;
}
.menu-bar a{
    color:#ffffff;
    font-size:19px;
    line-height: 23px;
    text-transform:uppercase;
    text-decoration: none;
}
#sidebar.open{
    height: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.has-sub ul{
    height: 0;
    opacity: 0;
    transition: transform .1s ease-in-out, opacity .1s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.has-sub.open ul{
    height: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}
/*pd-business-img-wrapper-css-start*/
.featured-slider-collage{
	width:100%;
    float: left;
	position: relative;
   
    color: #fff;
    margin-bottom:0px;
}
.feature-wrapper{
	padding-top:5px;
}
.feature-wrapper ul{
   padding-left:0px !important;
}
.featured-slider-collage .inner-image-2 ul{
	margin-bottom:0px!important;
  padding-left: 0px!important;
}
.featured-slider-collage .inner-image-1 a img{
    width:100%;
    height:auto;
    width:content-fit;	
}
.featured-slider-collage .inner-image-2 a img{
	width:content-fit;
    width:100%;
    height:auto;	
}
/* dropdown css start */
.dropdown-menu-btn {
    display:flex;
     column-gap:20px;
     justify-content: center;
}
.feature-link{
    position: relative; 
    transition: all 0.5s;
    min-width: 160px;
    display: block;
}
    .dropdown-list{
         display: none;  
        position: absolute;
        background-color: #fff;
        padding: 5px 0;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        font-size: 14px;
        border: 1px solid #ccc;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 4px;
        box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
       z-index: 99999;
    }  
    .dropdown-list li{
        padding: 5px 15px;
    } 
    .dropdown-list li:hover{
        background-color:#abb8c3 ;
    }  
   /* premium channel section css start */
   .premium-inner-wrap{
    padding: 40px;
    background: #333;
   }
 



/* premium channel section css start */
.premium-inner-wrap {
    padding: 30px 40px;
    background: #333;
    width: 100%;
    float: left;
}
.premium-title {
    padding-bottom: 20px;
    overflow: hidden;
}

.premium-title h3 {
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 4px;
    padding: 0 15px 5px 0;
    color: #222;
    font-size: 22px;
    font-weight: bold;
    font-size: 30px;
}
.premium-title h3:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    width: 1310px;
    background: #4a4a4a;
    left: 100%;
}
.carousel-container{
    position: relative !important;
}

.carousel-ul{
    width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    display: block !important;
    list-style: none !important;
    padding: 0 !important;
}

.carousel-li{
    width: 250px !important;
    /* height: 50px !important; */
    display: inline-block !important;
    text-align: center !important;
}

#prev {
    display: inline-block;
    position: absolute;
    left: 1%;
    background-color: hsla(0,0%,100%,.75);
    padding: 8px;
    cursor: pointer;
    top: 96px;
    border-radius: 50%;
    opacity: 0.5;
    /* font-weight: bold; */
  }
  
  #next {
    position: absolute;
    right: 2%;
    display: inline-block;
    background-color: hsla(0,0%,100%,.75);
    padding: 5px;
    cursor: pointer;
    top: 96px;
    /* font-weight: bold; */
    border-radius: 50%;
    padding: 8px;
    opacity: 0.5;
  }

#next:hover {
    opacity: 1.0;
}

#prev:hover {
    opacity: 1.0;
}



#prev1 {
    display: inline-block;
    position: absolute;
    left: 1%;
    background-color: hsla(0,0%,100%,.75);
    padding: 8px;
    cursor: pointer;
    top: 96px;
    border-radius: 50%;
    opacity: 0.5;
    /* font-weight: bold; */
  }
  
  #next1 {
    position: absolute;
    right: 2%;
    display: inline-block;
    background-color: hsla(0,0%,100%,.75);
    padding: 5px;
    cursor: pointer;
    top: 96px;
    /* font-weight: bold; */
    border-radius: 50%;
    padding: 8px;
    opacity: 0.5;
  }

#next1:hover {
    opacity: 1.0;
}

#prev1:hover {
    opacity: 1.0;
}


.premium-title h3 a {
    color: #d8d8d8;
/*    text-transform: uppercase;*/
    font-weight: bold;
    font-family: Armata, "Arial Narrow Bold", Arial, sans-serif;
}

.channel-1 {
    position: relative;
    overflow: hidden;
    max-height: 410px;
}


.channel-1 img{
    width: 100%;
    height:auto;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition:opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    opacity: 0.7;
 }

 .channel-1 img:hover{
  -webkit-transform: scale3d(1.15, 1.15, 1);
  transform: scale3d(1.15, 1.15, 1);
  opacity: 0.5;
 }


/* second premium wrapper section css start */
.premium-inner-wrap-1{
    padding: 30px 40px 0px 40px;
    background: #333;
    height: 526px;
}



/* premium animation css start */
#link {
    font-size: 1em;
    margin: 10px 0;
}

.item{
    transition: transform 2s;
}

.item:hover {
    transform: scale(2); 
    /* animation: keyName 3s ease-out forwards; */
}

/* @keyframes keyName {
    100% {
        transform: scale(1.1);
    }
} */

/* text-contain if premium wrapper */
.text-img {
    position: absolute;
    opacity: 0.8;
    font-weight: bold;
    color: #fff;
    font-size: 20px;
/*    text-transform: uppercase;*/
    background-color: #111111;
    margin: 0px 13px;
    bottom: 10px;
}
/* .text-img {
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    bottom: 121px;
    background-color: #111111;
    margin: 0px 13px;
}
.text-img-1{
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    opacity: 0.8;
    bottom: 92px;
    margin: 0px 13px;
    background-color: #111111;
}
.text-img-2{
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
    opacity: 0.8;
    bottom:122px;
    margin: 0px 13px;
    background-color: #111111;
} */
.text-img-3{
    /* font-weight: bold;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    position: absolute;
    opacity: 0.8;
    bottom:150px;
    margin: 0px 13px;
    background-color: #111111; */
}
/* story wrapper start */
.story-title-1 {
    padding-bottom: 20px;
    width: 100%;
    float: left;
}
.story-title-1 h3 {
    position: relative;
}
.story-warrper{
    width: 100%;
    float: left;
}
.story-title-1 h3 a {
    color: #d8d8d8;
/*    text-transform: uppercase;*/
    font-weight: bold;
    font-family: Armata, "Arial Narrow Bold", Arial, sans-serif;
    position: relative;
    z-index: 2;
    padding-right: 20px;
    background-color: #ffffff;
}
.story-title-1 h3:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    width: 78%;
    background: #4a4a4a;
    left: 22%;
}
.story-inner-img span{
    color: #aaa;
    font-size: 12px;
/*    text-transform: uppercase;*/
    padding: 17px 0px;
    display: block;
}
.story-inner-img span a{
    color: #aaa;
    font-size: 12px;
/*    text-transform: uppercase;*/
    text-decoration: none !important;
}
/* business tab section css start */
 /*vertical tab*/
ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
    width: 100%;
    float: left;
}
ul.tabs li{
	background: none;
/*	color: #13916d;*/
	display: inline-block;
	padding: 10px 15px;
	cursor: pointer;
    border: 1px solid transparent;
}
.tab-content {
    border-top: none;
    padding: 25px;
    margin-bottom: 30px;
}
ul.tabs li.current{
	background: #ffffff;
	color: #222;
    border-color: #dee2e6 #dee2e6 #fff;
    position: relative;
}
ul.tabs li.current::before
{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    background-color: #fff;
    width: 100%;
    height: 2px;
}
.tab-content{
    > .tab-pane {
    display: none;
  }
    > .active {
    display: block;
  }
	background: #ffffff;
	padding: 25px;
    border: 1px solid #dee2e6 ;
    border-top: 0;
}
.tab-content.current{
	display: flex;
}
.tab-image a{
    text-decoration: none;
}
.tab-image a p{
    font-weight: 700;
    color: #333;
    font-size: 19px;
    padding-top: 10px;
}
.tab-image span{
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-top: -17px;
}
.tab-image span a{
    color: #aaa;
    text-decoration: none;
}
.premium-wrapper {
    width: 100%;
    float: left;
}
.premium-wrapper-second {
    width: 100%;
    float: left;
}
.channel-image{
    width: 100%;
    float: left;
}
/* footer section start */
footer{

/*    background: #13916d;*/
    color: #fff;
    font-family: Armata, sans-serif;
/*    padding: 50px 0;*/
}
footer .footer-logo {
    display: block;
    margin-bottom: 50px;
}

.o_footer_copyright
{
    display: none;
}

.footer-meta {
    background: black;
    color: #fff;
    /* padding: 15px 0; */
}
.footer-meta p {
  margin: 0;
}

.fl-wrap {
    float: left;
    width: 100%;
    position: relative;
}
.bbb-wrapper {
    margin-top: 50px;
    margin-bottom: 20px;
}

.bbb-wrapper .subcribe-form p {
    color: #fff;
    font-size: 14px;
}


.subcribe-form h2{
    color: #fff;
    font-weight: 700;
    font-family: Armata, "Arial Narrow Bold", Arial, sans-serif;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 1px;
}
.rotate{
    rotate: 180deg;
}

.business-tab-wrapper,footer ,.footer-meta{
    float: left;
    width: 100%;
}

.form-elements input{
    width: 100%;
    height: 36px;
    background: #fff;
    border: none;
    outline: none;
    border-bottom: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 30px;
    /* box-shadow: 0px 0px 0px 7px rgb(255 255 255 / 20%); */
}
.form-elements button{
    /* max-width: 200px; */
    height: 36px;
    background: #fff;
    border: none;
    outline: none;
    border-bottom: 1px solid #ddd;
    border-radius: 1px;
    padding: 0 30px;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    /* box-shadow: 0px 0px 0px 7px rgb(255 255 255 / 20%); */
}

.icon{
    display: flex;
    justify-content: space-between;
    row-gap: 15px;
    flex-wrap: wrap;
}
.icon ul {
    display: flex;
    column-gap: 10px;
    align-items: center;
    /* margin-top: 30px; */
    padding-left: 0;
}
.icon ul li a{
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon ul li a i {
/*    color: #13916d;*/
    font-size: 14px;
}
.icon ul li a:hover{
    color: #ffffff  ;
}
/* vedio next page css start */
/* .featured-vedio-collage{
    padding: 40px 0; 
} */
.vedio-heading span{
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 0px;
    display: block;
    border-bottom: 1px solid #efefef;
}
.vedio-ul{
   padding-left: 0px;
}
 .vedio-heading span a{ 
color: #aaa;
font-size: 12px;
text-transform: uppercase;
text-decoration: none;
}
.inner-vedio-image-2{
     width: 100%; 
     height:auto; 
}
/*vedio-icon-btn css start*/
.vedio-icon-btn{    
    margin: 20px 0px 15px 0px;
}
.facebook-btn{
    background-color: rgb(59, 89, 152);
   margin-right: 6px; 
   padding: 8px;
   color:  rgb(255, 255, 255);
   font-size: 12px;
   display: inline-block;
   transition: all 0.3s;
}
.facebook-btn:hover{
  text-decoration: none;
  color: #ffffff;
  transform: translate(0, -10px);
}
.Twitter-btn:hover{
    text-decoration: none;
    color: #ffffff;
    transform: translate(0, -10px);
  }
.more-btn:hover{
    text-decoration: none;
    color: #ffffff;
    transform: translate(0, -10px);
  }
.Twitter-btn{
    background-color: rgb(29, 161, 242);
    margin-right: 6px;
    padding: 8px;
   color:  rgb(255, 255, 255);
   font-size: 12px;
   transition:all 0.3s;
   display: inline-block;
}
.more-btn{
    background-color: rgb(255, 101, 80);
    margin-right: 6px;
    padding: 8px;
   color:  rgb(255, 255, 255);
   font-size: 12px;
   transition:all 0.3s;
   display: inline-block;
}
.feature-vedio-wrapper p{
    margin: 0 0 10px !important;
    color: #000;
    font-size: 17px;
    line-height: 27px;
}
.feature-vedio-wrapper p a{
    color: #29c9cb !important;
    font-size: 17px;
    line-height: 27px;
    text-decoration: none !important;

}
.feature-vedio-wrapper p a:hover{
    color: #000 !important;
}
/* posttage section css start  */
.posttags{
    font: italic 13px/19px Georgia, Times, serif;
    color: #999 !important;
    letter-spacing: 0;
    margin: 0;
    padding: 8px 0px;
    font-size: 15px !important;
    border-bottom: 1px solid #efefef; 
    border-top: 1px solid #efefef;
}
.posttags a span{
font-family: Helvetica, Arial, sans-serif;
color: #999;
font-size: 14px !important;
font-style: normal;
font-weight: bold;
}
.posttags a span:hover{
    color: #333;
}
.posttags .block-link {
    display: block;
    margin-top: -6px !important;
}
/* articla section css start */
.comments{
    font-size: 13px;
    line-height: 18px;
    margin-top: 20px;
    color: #000;
    font-weight: 700;
    font-family: Armata, "Arial Narrow Bold", Arial, sans-serif;
}
.article-wrap p{
    font: 14px Arial, sans-serif;
    margin-bottom: 5px;
    display: block;
    color: #777;
}
.artical-time a{
    color: #007bb5 !important;
    font-size: 17px;
    line-height: 27px;
    text-decoration: none !important;
}
.artical-time a:hover{
    text-decoration: underline !important;
}
.nic-text{
    margin: 10px 0px; 
}
.nic-text p{
  font-size: 17px !important;
}
.reply-wrap a{
    color: #29c9cb;
    font-size: 17px;
    line-height: 27px;
    text-decoration: none !important;
}
.reply-wrap a:hover{ 
    color: #000;
}
.post-blog{
    background-color: #fafafa;
    padding: 15px 20px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin-top: 50px;
}
.post-blog h3{
    margin: 0 0 10px;
    font: 19px arial, sans-serif;
    color: #444;
}
.post-blog p{
font-size: 14px;
margin-bottom: 15px;
}
/* troy-media-wrap secṭion css start */
.widget-title{
    margin-right: -27px;
    background: #444;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    padding: 5px 10px;
    margin-bottom: 15px;
    width: 100%;
    position: relative;
}
.widget-title::after{
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    right: 0px;
    top: 100%;
    border-width: 5px 6px;
    border-style: solid;
    border-color: #222 transparent transparent #222;
}
.troy-media-wrap-1  ul{
    padding-left: 0px !important;
    line-height: 27px;
}
.troy-media-wrap-1  ul li a{
    color:#29c9cb !important;
    font-size: 17px;
    text-decoration: none;
    line-height: 27px;
}
/* sider bar css section start */
 #sidebarWrap {
    position: relative;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
}
#sidebardiv {
    position: absolute;
       width:370px;
      height: auto;
}
#sidebardiv.fixed{
    position: fixed;
    top: 30px;
}
/* professional-page-css start*/
.professional-content{
    margin: 0px 0 10px;
}
.canda-wrap-img{
   background-color:#000 ;
}
.canada-wrapper{
    margin-top: 25px;
    width: 100%;
    height: auto;
    display: flex;
 }
.canada-wrapper-second{
   margin-top: 20px;
   width: 100%;
   height: auto;
   display: flex;
}
.postmeta {
    font-size: 12px;
    margin: 0;
    color: #bbb; 
    padding: 10px 0px;
}
.postmeta span a{
    color: #bbb;
}
.postmeta span a:hover{
    font-weight: 700;
    text-decoration: none;
}
.alm-btn-wrap{
    display: inline-block;
    text-align: center;
    padding: 12px;
    margin: 40px 0 25px;
    position: relative;
    color: #ffffff;
    background-color: #80ca7a;
    border-radius: 4px;
}
.alm-btn-wrap:hover{
    color: #ffffff;
    text-decoration: none;
    background-color: #81c17b;
}
/*(new) about page section css start */
.about-section-start p{
    color: #444;
}
.about-section-start .about-heading-text{
    color: #339966;
    font-size: 18pt;
    margin: 20px 0px 10px 0px;
}
.about-section-start .about-main-heading{
    font-size: 40px;
    line-height: 44px;
    font-weight: bold;
    color:#121212;
}  
.about-section-start .about-inner-img-wrap{
      display:flex;
}
.about-section-start .about-inner-img-wrap span{
    display: inline-block;
}
.about-section-start .about-inner-img-wrap{   
margin-top: 35px;
}
.about-section-start .about-inner-img-wrap img{
     max-width:223px;
}
.about-section-start .about-inner-img-wrap .about-side-text{
     position: relative;
     bottom: 18px;
}
.about-section-start .about-inner-img-wrap  .another-text-css{
    position: relative;
    bottom: -45px;
    margin-bottom: 70px !important;
}
.about-section-start .about-inner-img-wrap p{    
    padding: 0px 30px;
color: #444;
}
.about-icon-btn{
     margin-top: 80px;
     margin-bottom:7px;
}
.linkedin-btn{
    background-color:rgb(0, 119, 181);
}
/*(new) advertise page section css start */
.Advertise-section-start .advertise-heading-text{
    color: #008000;
    font-size: 24pt;
    margin-top: 25px;
    font-weight: 700;
}  
.Advertise-section-start .option-text{
    margin: 40px 0px 35px 0px; 
} 
.Advertise-section-start .option-text a{
      color: #29c9cb;
      margin-top: 30px;
      font-size: 18pt;
      text-decoration: none;
}
.Advertise-section-start .option-text a:hover{
     color: #000;
}
.Advertise-section-start .unique-text{
    color: #444;
    font-size:14pt;
     font-weight: 500;
}
.Advertise-section-start .expected-text {
    padding:0px;
     margin: 0px;
}
.Advertise-section-start .expected-text li{
    color: #444;
    font-size:14pt;
     font-weight: 500;
}
.Advertise-section-start .media-text{
    color: #008000;
    font-size: 18pt;
    margin: 30px 0px;
}
.Advertise-section-star .common-advertise-ul{

}

.network
{
    text-align: center; 
    font-size: 20px;
    margin: 20px 0px; 
    padding: 5px;
}