/*
Theme Name: OSM
Author: the OSM team
Author URI: https://onestopmedia.com.au/
*/

/*Videos-Webinars-outer-page-style-start-here*/
.Videos-Webinars-top-content {
    padding: 50px 0 40px;
}
.Videos-Webinars-top-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}
.Videos-Webinars-top-content p {
    font-size: 20px;
    line-height: 32px;
}
.Videos-Webinars-featured-list {
    background-color: #e0f5fc;
    padding: 60px 0px 90px;
}
.featured-list-box {
    box-shadow: 0 7px 16px rgb(96 96 96 / 25%);
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    background-color: #d5faa8;
    margin-top: 30px;
}
.featured-list-box-left {
    position: relative;
    padding: 0px 20px 20px 20px;
    width: 50%;
}
.featured-list-box h3.event-name {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 21px;
}
.featured-list-box-left p {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}
.featured-list-box-left ul {
    padding: 0;
    list-style: none;
}
.featured-list-box-left ul li:before {
    content: "";
    height: 7px;
    width: 7px;
    background-color: #80a80f;
    position: absolute;
    top: 6px;
    left: 0;
    transform: rotate(45deg);
}
.featured-list-box-left ul li {
    font-size: 14px;
    position: relative;
    padding-left: 18px;
    margin-bottom: 9px;
}
.evet-buttons-outer {
    display: flex;
    margin-top: 22px;
}
.featured-list-box-left a {
    background-color: #80a80f;
    color: #fff;
    padding: 11px 30px;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 5px;
    margin-right: 13px;
}
.featured-list-box-left a:hover {
    background-color: #232c0c;
    text-decoration: none;
}
.featured-list-box-left a.more-info {
    background-color: #232c0c;
}.featured-list-box-left a.more-info:hover {
    background-color: #80a80f;
}

.featured-list-box-right {
    width: 50%;
}
.featured-list-box-right img {
    width: 100%;
}
.featured-list-box-right iframe {
    height: 100%;
    width: 100%;
}
.Videos-Webinars-all-list {
    padding: 70px 0;
}
.Videos-Webinars-all-list-box {
    display: flex;
    flex-wrap: wrap;
}
.Videos-Webinars-all-list-box-inner {
    width: 33.333%;
    padding: 20px;
}
.Videos-Webinars-all-list-box-bg {
    box-shadow: 0 7px 16px rgb(96 96 96 / 25%);
    background-color: #f1fef5;
}
.Videos-Webinars-all-list-video{
	position: relative;
}
.Videos-Webinars-all-list-video img {
    width: 100%;
}
.Videos-Webinars-all-list-video .overlay-full {
    position: absolute!important;
    left: 0;
    right: 0;
    display: flex;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: rgba(3,3,3,.56);
    align-items: center;
    justify-content: center;
}

.Videos-Webinars-all-list-content {
    padding: 6px 20px 26px;
}
.Videos-Webinars-all-list-content h2.Videos-Webinars-all-list-item-title {
    font-size: 18px;
    line-height: 26px;
}
.Videos-Webinars-all-list-content a {
    color: #80a80f;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
    margin-top: 3px;
    display: inline-block;
}
.Videos-Webinars-all-list-content a i {
    font-size: 12px;
    position: relative;
    top: -1px;
    margin-left: 8px;
}
.Videos-Webinars-all-list-content a:hover {
    text-decoration: none;
    color: #232c0c;
}
.Videos-Webinars-all-list-button {
    padding: 50px 20px 0;
    text-align: center;
    width: 100%;
}
.Videos-Webinars-all-list-button button {
    background-color: #80a80f;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    float: none;
    border: none;
}
.Videos-Webinars-all-list-button button:hover {
    background-color: #232c0c;
    text-decoration: none;
}
/*Videos-Webinars-outer-page-style-end-here*/

/*Videos-Webinars-filter style start here*/
.custom-select-outer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.custom-select-outer .custom-select {
    margin-left: 12px;
}
.custom-select {
  position: relative;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #fff;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 17px;
    right: 18px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #9ac31d transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #9ac31d transparent;
  top: 9px;
}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    color: #656565;
    padding: 8px 34px 8px 16px;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    user-select: none;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #fff;
}
/*Videos-Webinars-filter style end here*/

.contact-form .custom-width:nth-child(2), .contact-form .custom-width:nth-child(4) {
    padding-right: 0 !important;
}

/*Videos-Webinars-single page style Start here*/
.Videos-Webinars-single-You-tube, .Videos-Webinars-single-sildo {
    border: solid 1px #dbd6d6;
    padding: 5px 5px 0px;
    margin: 0px 0 30px;
}
.Videos-Webinars-single-page-outer h1.single-event-name {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 21px;
}
.single-event-date-outer, .single-event-time-outer {
    font-size: 18px;
    margin-bottom: 10px;
}
.Videos-Webinars-single-page-outer p {
    font-size: 18px;
    line-height: 33px;
}
.single-listing-outer {
    display: flex;
    flex-wrap: wrap;
}
.single-listing-inner {
    padding-right: 25px;
}
.single-listing-inner h2 {
    font-size: 24px;
    margin-bottom: 22px;
    margin-top: 15px;
}
.single-listing-inner ul {
    padding: 0;
    list-style: none;
}
.single-listing-inner ul li {
    font-size: 16px;
    position: relative;
    padding-left: 18px;
    margin-bottom: 14px;
}
.single-listing-inner ul li:before {
    content: "";
    height: 7px;
    width: 7px;
    background-color: #80a80f;
    position: absolute;
    top: 6px;
    left: 0;
    transform: rotate(45deg);
}
.Videos-Webinars-single-You-tube iframe {
    width: 100%;
    height: 400px;
}
.Videos-Webinars-single-outer {
    padding-top: 30px;
}
.Videos-Webinars-single-page-outer.clearfix {
    padding-bottom: 50px;
    padding-top: 40px;
}
a.Videos-Webinars-register {
    background-color: #80a80f;
    color: #fff;
    padding: 18px 44px 18px;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    margin-right: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}
a.Videos-Webinars-register:hover {
    background-color: #232c0c;
    text-decoration: none;
}

.pblawyer-main-section 
{
    margin-top:0%;
}
.Videos-Webinars-top-content
{
    margin-top:5%;
}
.cw-announcement .animated
{
  width:100%;
}
/*Videos-Webinars-single page style end here*/
.group-blog .pt-cv-view .pt-cv-ifield img
{
  min-height:285px;
  max-height:285px;
}

.faq-sec .container
{
  width: 1255px;
  max-width:93%;
}

/*Responsive style start here*/
@media screen and (max-width: 991.9px) {
.featured-list-box {
    flex-wrap: wrap;
}
.featured-list-box-left,.featured-list-box-right {
    width: 100%;
}
.featured-list-box-left {
    margin-top: 20px;
}
.featured-list-box-right {
    height: 400px;
    margin-top: 30px;
}
}
@media screen and (max-width: 991px) {
.featured-list-box {
    flex-wrap: wrap;
}
.featured-list-box-left,.featured-list-box-right {
    width: 100%;
}
.Videos-Webinars-all-list-box-inner {
    width: 50%;
}
header.navbar-fixed-top.fixed-navbar.main-header-fixed .nav.navbar-nav.custom-nav > li {
    padding: 37px 9px 34px 7px;
}
.nav.navbar-nav.custom-nav li a {
    font-size: 12px;
}
}
@media screen and (max-width: 640px) {
.Videos-Webinars-all-list-box-inner {
    width: 100%;
    padding: 15px;
}

.group-blog .pt-cv-view .pt-cv-ifield img
{
  min-height:auto;
  max-height:auto;
}

}

@media screen and (max-width: 500px) {
.featured-list-box {
    flex-wrap: wrap;
}
.featured-list-box-left {
    position: inherit;
}
.featured-list-box-left,.featured-list-box-right {
    width: 100%;
}
.Videos-Webinars-single-You-tube iframe {
    width: 100%;
    height: auto !important;
}
}
/*Responsive style end here*/