/*
Theme Name: Twenty Twelve
Theme URI: http://wordpress.org/themes/twentytwelve
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, flexible-width, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
html {
	-webkit-font-smoothing: antialiased;  
	-moz-osx-font-smoothing: grayscale  
  }
  
  * {  
	box-sizing: border-box  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-Italic.woff2') format('woff2'), url('../../fonts/TitilliumWeb-Italic.woff') format('woff');  
	font-weight: normal;  
	font-style: italic;  
	font-display: swap;  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-Bold.woff2') format('woff2'), url('../../fonts/TitilliumWeb-Bold.woff') format('woff');  
	font-weight: bold;  
	font-style: normal;  
	font-display: swap;  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-ExtraLight.woff2') format('woff2'), url('../../fonts/TitilliumWeb-ExtraLight.woff') format('woff');  
	font-weight: 200;  
	font-style: normal;  
	font-display: swap;  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-Light.woff2') format('woff2'), url('../../fonts/TitilliumWeb-Light.woff') format('woff');  
	font-weight: 300;  
	font-style: normal;
  	  font-display: swap;
  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-Regular.woff2') format('woff2'), url('../../fonts/TitilliumWeb-Regular.woff') format('woff');  
	font-weight: normal;  
	font-style: normal;
  	  font-display: swap;
  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-LightItalic.woff2') format('woff2'), url('../../fonts/TitilliumWeb-LightItalic.woff') format('woff');  
	font-weight: 300;  
	font-style: italic;  
	  font-display: swap;  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-SemiBold.woff2') format('woff2'), url('../../fonts/TitilliumWeb-SemiBold.woff') format('woff');  
	font-weight: 600;  
	font-style: normal;  
	  font-display: swap;  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-Black.woff2') format('woff2'), url('../../fonts/TitilliumWeb-Black.woff') format('woff');  
	font-weight: 900;  
	font-style: normal;  
	  font-display: swap;  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-SemiBoldItalic.woff2') format('woff2'), url('../../fonts/TitilliumWeb-SemiBoldItalic.woff') format('woff');  
	font-weight: 600;  
	font-style: italic;  
	  font-display: swap;  
  }
  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-ExtraLightItalic.woff2') format('woff2'), url('../../fonts/TitilliumWeb-ExtraLightItalic.woff') format('woff');  
	font-weight: 200;  
	font-style: italic;  
	  font-display: swap;
  
  }  
  @font-face {  
	font-family: 'Titillium Web';  
	src: url('fonts/TitilliumWeb-BoldItalic.woff2') format('woff2'), url('../../fonts/TitilliumWeb-BoldItalic.woff') format('woff');
  	font-weight: bold;  
	font-style: italic;  
	font-display: swap;  
  }
body {
	margin: 0px;
	padding: 0px;
	font-family: 'Titillium Web';
	font-size: 20px;
	color: #737373;
	background: #F7F7F7 ;
	line-height: 38px;
  }

a {
	color: #f47d03;
	transition: 0.5s;
	text-decoration: none;
    outline: none;
}
a:hover {
    color: #737373;
    outline: none;
}
a:focus{
    outline: none;
}
body.custom-font-enabled {
    font-family: 'Titillium Web';
}
section {
	overflow: hidden;
	clear: both;
	margin-bottom: 10px;
}
.js noscript img {
	display: none !important;
}

/*::-webkit-selection {
	background: #3a3a3a;
	color: #f2f2f2;
	text-shadow: none;
   }
   
   ::-moz-selection {
	background: #3a3a3a;
	color: #f2f2f2;
	text-shadow: none;
   }
   ::selection {
	   background: #3a3a3a;
	   color: #f2f2f2;
	   text-shadow: none;
   }*/
   .resize {
	   -webkit-opacity: 1;
	   -moz-opacity: 1;
	   opacity: 1;
   }
   .no-js .resize {
	   display: none;
   }
   .entry-content p{
    font-size:18px;
    color:#666666;
    font-family: 'Open Sans',sans-serif;
    line-height:28px !important;
    
    }
	.entry-header .entry-title {
		font-family: 'Titillium Web';
		font-size: 50px;
		margin: 0;
		padding: 0 0 30px;
		font-weight: bold;
		color: #333333;
		text-transform: uppercase;
		line-height: 58px;	
	  }
	  .archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
font-size: 11px;
line-height: 2.181818182;
font-weight:normal;
color: #333333;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img
{
/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
border-radius:3px;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.2);
}  
	  .entry-header .entry-title a{
		color: #333333;
		text-decoration: none;
	  }
	  .widget-area .widget h3 {
		padding: 0;
		margin: 0 0 15px 0;
		font-size:26px;
		line-height: normal;
		font-weight:600;
		color: #333333;
		}
/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 25px;	
	border: 1px solid #CBCBCB;
	border-radius: 6px;
	padding:35px;
	}

.widget-area ul{
	list-style:none;
	padding:0px;
	margin:0px;
}
.widget-area ul li a{
	color: #4E4E4E!important;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    text-decoration: none;
 }
.widget-area ul li {
    padding: 10px 0px 10px 0px;
    margin: 0px;
    border-bottom: 1px solid #CBCBCB;
}		
.widget-area .widget a:hover {
	color: #f47d03 !important;
	}
    .tptn-left-thumbs ul li{
        padding: 10px 0px 10px 0px !important;
    }
    .tptn-left-thumbs img.tptn_thumb{
        border: 0 !important;
        border-radius:0 !important;
        -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin-bottom: 4px;
    }
    a.tptn_link:hover span {
        color: #f47d03 !important;
    }
    .tptn-left-thumbs .tptn_title{
        color: #4E4E4E;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    text-decoration: none;
    }
.widget-area .widget a:visited {
	color: #9f9f9f;
	}
    nav.nav-single {
        margin-bottom: 30px;
    }
    .gmi_comment_count {
        font-weight: 700;
    }
    .yarpp-related {
        border-bottom: 1px solid #CBCBCB;
    }
/* =Comments
-------------------------------------------------------------- */
.format-status .entry-header {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
    }
    .format-status .entry-header header {
    display: inline-block;
    }
    .format-status .entry-header h1 {
    font-size: 15px;
    font-size: 1.071428571rem;
    font-weight: normal;
    line-height: 1.6;
    margin: 0;
    }
    .format-status .entry-header h2 {
    font-size: 12px;
    font-size: 0.857142857rem;
    font-weight: normal;
    line-height: 2;
    margin: 0;
    }
    .format-status .entry-header header a {
    color: #757575;
    }
    .format-status .entry-header header a:hover {
    color: #21759b;
    }
    .format-status .entry-header img {
    float: left;
    margin-right: 21px;
    margin-right: 1.5rem;
    }
    
    
    
    .comments-area article {
    margin: 24px 0;
    margin: 1.714285714rem 0;
    border-bottom: 1px solid #BCBCBC;
    padding-bottom: 20px;
    }
    .comments-area article header {
    margin: 0 0 48px;
    margin: 0 0 1em;
    overflow: hidden;
    position: relative;
    }
    section.comment-content.comment {
        padding-left: 55px;
        margin-bottom: 0;
    } 
    .reply{
        padding-left: 55px;  
        color: #F47F03;
    }
    .comments-area article header img {
    float: left;
    padding: 0;
    line-height: 0;
    border-radius: 50%;
    }
    .entry-content p{
        margin: 0 0 24px;  
    }
.entry-summary p,
.comment-content p,
.mu_register p {
margin: 0 0 24px;
margin: 0 0 0;
line-height: 1.714285714;
font-size: 18px;
}
    .comments-area article header cite,
    .comments-area article header time {
    display: block;
    margin-left: 85px;
    margin-left: 3.4rem;
    }
    .comments-area article header cite {
    font-style: normal;
    font-size: 15px;
    font-size: 1.071428571rem;
    line-height: 1.42857143;
    }
    .comments-area cite b {
        font-weight: bold;
        color: #333333;
        font-size: 18px;
    }
    .comments-area article header time {
        line-height: normal;
        text-decoration: none;
        font-size: 18px;
        color: #5e5e5e;
    }
    .comments-area article header a {
    text-decoration: none;
    color: #5e5e5e;
    }
    .comments-area article header a:hover {
    color: #21759b;
    }
    .comments-area article header cite a {
    color: #444;
    }
    .comments-area article header cite a:hover {
    text-decoration: underline;
    }
    .comments-area article header h4 {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    padding: 0.428571429rem 0.857142857rem;
    font-size: 12px;
    font-size: 0.857142857rem;
    font-weight: normal;
    color: #fff;
    background-color: #0088d0;
    background-repeat: repeat-x;
    background-image: -moz-linear-gradient(top, #009cee, #0088d0);
    background-image: -ms-linear-gradient(top, #009cee, #0088d0);
    background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
    background-image: -o-linear-gradient(top, #009cee, #0088d0);
    background-image: linear-gradient(top, #009cee, #0088d0);
    border-radius: 3px;
    border: 1px solid #007cbd;
    }
    .comments-area .bypostauthor cite span {
    position: absolute;
    margin-left: 5px;
    margin-left: 0.357142857rem;
    padding: 2px 5px;
    padding: 0.142857143rem 0.357142857rem;
    font-size: 10px;
    font-size: 0.714285714rem;
    }
    .comments-area .bypostauthor cite b {
    font-weight: bold;
    }
    a.comment-reply-link,
    a.comment-edit-link {
    color: #F47F03;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
    }
    
    a.comment-reply-link:hover,
    a.comment-edit-link:hover {
    color: #21759b;
    }
    .commentlist .pingback {
    line-height: 1.714285714;
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
    }
ol.commentlist {
    padding-left: 0;
}
.comments-title {
    margin-bottom: 48px;
    margin-bottom: 3.428571429rem;
    font-size: 16px;
    font-size: 1.142857143rem;
    line-height: 1.5;
    font-weight: normal;
    display: none;
    }
    .comments-link a{
        background: url(images/comments-bg.png) no-repeat left 12px;
        padding-left:35px;
        color: #4E4E4E;
        font-size: 26px;
        font-weight: 600;
        }
.entry-meta a {
color: #4E4E4E;
}
.comments-link a:hover,
.entry-meta a:hover {
color: #21759b;
}
     .top-search-area {
           
            padding: 10px 12px 10px 25px;
            display: flex;
            background: #FFFFFF;
            box-shadow: 0px 3px 20px #0000000d;
            border-radius: 6px;
            position: relative;
            justify-content: space-between;
            align-items: center;
    }
    .top-search-area span {
        color: #454B52;
        font-size: 28px;
        line-height: 43px;
    }
    .search-area {
        width: 500px;
    }
    .is-form-style input.is-search-input {
        border: 0 !important;
        border-radius: 5px;
        height: 53px;
        padding-left: 50px;
        font-size: 17px !important;
        line-height: 27px;
        font-weight: 300;
    }
    .is-form-style.is-form-style-3 label {
        width: 100% !important;
    }
    .is-form-style button.is-search-submit {
        position: absolute;
        left: 18px;
        top: 9px;
    }
    .is-form-style button.is-search-submit .is-search-icon {
        background: none;
        border: none;
        padding-right: 0;
        padding-top: 0 !important;
        background: url(images/search.svg) left no-repeat;
        width: 30px;
    }
    .is-form-style button.is-search-submit .is-search-icon svg {
        display: none;
    }
    .top-search-area .error {
        color: red;
        font-size: 18px;
        padding-top: 8px;
    }
    /* Comment form */
#respond {
    margin-top: 48px;
    margin-top: 3.428571429rem;
    border-bottom: 1px solid #BCBCBC;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    }
    #respond h3#reply-title {
        font-size: 26px;
        color: #4E4E4E;
        font-weight: 600;
    }
    #respond h3#reply-title #cancel-comment-reply-link {
    margin-left: 10px;
    margin-left: 0.714285714rem;
    font-weight: normal;
    font-size: 12px;
    font-size: 0.857142857rem;
    }
    #respond form {
    margin: 24px 0;
    margin: 1rem 0;
    }
    #respond form p {
    margin: 11px 0;
    margin: 0.785714286rem 0;
    }
    #respond form p.logged-in-as {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
    }
    #respond form label {
    display: block;
    line-height: 1.714285714;
    font-size: 16px;
    }
    #respond form textarea {
        height: 143px;
    }
    #respond form input[type="text"],
    #respond form textarea {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.714285714;
    padding: 10px;
    padding: 0.714285714rem;
    width: 100%;
    border: 1px solid #CBCBCB;
      border-radius: 4px;
      padding: 15px 15px;
    /*resize:none;*/
    }
    #respond form input[type="text"]:focus-visible,
    #respond form textarea:focus-visible {
outline:#F47F03 auto 5px;
    }
    .form-submit input[type="submit"]{
        background: #BC0C0C;
        border-radius: 0;
        border: none;
        color: #FFF;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 20px 15px;
        width: 275px;
        transition: 0.5s all;
    }
    p.comment-form-cookies-consent {
        display: flex;
        align-items: baseline;
    }
    p.comment-form-cookies-consent input {
        margin-right: 10px;
    }
    .rpwe-thumb{
        border: 0 !important;
    }
    #respond form p.form-submit {
        margin-top: 40px;
    }
    .form-submit input[type="submit"]:hover{
    background: #049223;
    
    }
    
    
    
    
    .nav-single .nav-previous a{
    text-align:left;
    }
    
    .nav-single .nav-next a{
    text-align:right;
    }
    
    #respond form p.form-allowed-tags {
    margin: 0;
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 2;
    color: #5e5e5e;
    display:none;
    }
    .required {
    color: red;
    }
    
/* footer*/
.footer {
    width: 100%;
    margin: 0px;
    padding: 0px 0;
    background: #2D3646;
}
.footer .common-container {
    max-width: 1260px;
    margin: auto;
    padding: 0px 10px;
    position: relative;
}
.footer-pattern {
    padding: 70px 0;
}
.footer-top {
    border-bottom: 1px solid rgba(135, 135, 135, 0.79);
    padding-bottom: 35px;
    margin-bottom: 55px;
    display: inline-block;
    width: 100%;
}
.left {
    float: left;
}
.footer-top .title-prim {
    color: #fff;
    font-size: 60px;
    line-height: 55px;
    margin-bottom: 0;
}
.title-prim {
    font-family: 'Titillium Web';
    font-size: 60px;
    text-align: left;
    margin: 0;
    padding: 0 0 30px;
    font-weight: 400;
    color: #2C3546;
    text-transform: none;
    line-height: 60px;
    width: 100% !important;
}
select {

    /* styling */
    background-color: #314669;
    border: thin solid #314669;
    border-radius: 50px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;
    color: white;
  
    /* reset */
  
    margin: 0;      
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  
  /* arrows */
  
  select.postform {
    background-image:
      linear-gradient(45deg, transparent 50%, yellow 50%),
      linear-gradient(135deg, yellow 50%, transparent 50%),
      radial-gradient(#314669 65%, transparent 72%);
    background-position:
      calc(100% - 20px) calc(1em + 2px),
      calc(100% - 15px) calc(1em + 2px),
      calc(100% - .5em) .5em;
    background-size:
      5px 5px,
      5px 5px,
      1.5em 1.5em;
    background-repeat: no-repeat;
  }
.title-prim span {
    font-weight: 700;
}
.footer-top .title-prim img {
    width: 157px;
    height: 54px;
    float: right;
    margin-right: 51px;
}
.footer-top .col-3 {
    padding: 0 15px;
}
.col-3 {
    width: 25%;
}
.footer-top h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 22px;
	font-family: 'Titillium Web';
	font-style: normal;
    font-weight: bold;
    line-height: 29.7px;
}
.footer-top p {
    color: #fff;
    padding-bottom: 0;
	margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
}
.footer-top p a {
    color: #fff;
    margin-bottom: 10px;
	text-decoration: none;
}
.footer-top p a:hover {
    color: #BC0C0C;
}
.footer .col {
    width: 20%;
    padding: 0 12px;
}
.footer ul {
    margin: 0;
    padding: 0;
}
.footer ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 15px;
    margin-bottom: 20px;
}
.footer ul li a {
    color: #E2E0E0;
    text-transform: none;
    font-size: 16px;
    font-family: 'Titillium Web';
    transition: all 0.5s ease;
    font-weight: 600;
    letter-spacing: 1px;
	text-decoration: none;
}
.footer ul li a:hover {
    color: #BC0C0C;
}

.footer ul li a span {
    color: #E2E0E0;
    font-size: 14px;
    font-family: 'Titillium Web';
    transition: all 0.5s ease;
    text-transform: uppercase;
}
.footer ul li a span:hover {
    color: #BC0C0C;
}
.footer ul li a span strong {
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}
.social-media {
    margin-top: 0px;
    margin-bottom: 10px;
    float: left;
    margin-left: -23px;
}
.media-sprite a {
    width: 30px;
    height: 30px;
    background-image: url(images/sprite.png);
    display: inline-block;
}
.back-top {
    line-height: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-top: 15px;
    opacity: 0;
    transition: all 0.5s;
    display: none;
}
.back-top.active {
    display: inline-block;
    opacity: 1;
    transition: all 0.5s;
}
#slide-panel {
    width: 300px;
    background: #fff;
    position: absolute;
    z-index: 99999;
    right: -30px;
    margin-top: -5px;
    padding: 25px;
    box-shadow: 0 0 13px #d6d6d6;
    height: 410px;
    overflow: auto;
    opacity: 0;
    bottom: 0px;
    top: 50%;
    display: none;
    transform: translateX(-50%);
}
.overlay {

    display: none; /* Hidden by default */  
    position: fixed; /* Stay in place */  
    z-index: 1; /* Sit on top */  
    left: 0;  
    top: 0;  
    width: 100%; /* Full width */      
    height: 100%; /* Full height */  
    overflow: auto; /* Enable scroll if needed */  
    background-color: rgb(0, 0, 0); /* Fallback color */  
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */  
    z-index: 9999;  
  }
#slide-panel.visible {
    padding: 25px;
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#slide-panel h3 {
    margin-bottom: 15px;
    float: left;
    color: #2C3546;
    font-family: 'Titillium Web';
    font-size: 30px;
    font-style: normal;
    font-weight: bold;
    line-height: 40px;
}
#slide-panel .close-bttn {
    background-image: url(images/sprite.png);
    background-position: -131px -10px;
    width: 30px;
    height: 30px;
    transform: scale(0.7);
    z-index: 9999;
    position: relative;
}
.close-bttn {
    float: right;
    margin-top: 10px;
}
#floating-contact input[type="text"], input[type="tel"], input[type="password"], input[type="file"], input[type="email"], textarea.wpcf7-textarea, select, button {
    border: medium none;
    color: #8e8071;
    font-size: 16px;
    outline: medium none;
    padding: 10px;
    border: 1px solid #b9b9b9;
    width: 100%;
    margin-bottom: 5px;
    font-family: 'Titillium Web';
    border-radius: 0 !important;
    text-transform: none!important;
    line-height: initial;
}
textarea.wpcf7-textarea {
    height: 70px;
}
#floating-contact p {
    margin-bottom: 0;
}
#slide-panel .wpcf7-not-valid-tip {
    color: #F00;
    border: none !important;
    font-size: 12px !important;
    display: block !important;
    line-height: normal !important;
}
#slide-panel .wpcf7 form .wpcf7-response-output {
    margin: 10px 0;
    padding: 5px 15px;
    border: 2px solid #ffb900 ;
    font-size: 14px;
    line-height: normal;
}
#slide-panel .wpcf7 form.sent .wpcf7-response-output{
    border-color: #46b450 !important;
}
#slide-panel form.submitting .wpcf7-spinner {
    vertical-align: middle;
}
#floating-contact input[type="submit"] {
    outline: medium none  
  }
  #result p {
    line-height: normal;  
    font-size: 18px;  
    font-weight: bold  
  }
  #result .color-green {
    color: #0C3  
  }
  #success-message {
    color: #093;  
    margin-top: 15px  
  }
  .line-button {
    text-transform: uppercase;
    margin-top:10px;
    padding: 10px 20px 10px 25px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #fff;
    position: relative;
    transition: 0.5s all;
    z-index: 1;
    border: 0;
    background: #BC0C0C;
    text-align: left;
    width: auto;
    line-height: normal;
    cursor: pointer;
    font-family: 'Titillium Web';
    border-radius: 0 !important;
    text-transform: none!important;
}
.line-button:hover {
    background: #049223;
    color: #fff;
}
.mobile-visible {
    display: none !important;
}
.media-sprite a:hover, .plat_forms ul li img:hover {
    transition: .3s ease-in-out;
    transform: scale(1.1);
}
.back-top img, .media-sprite a, .plat_forms ul li img {
    transition: .3s ease-in-out;
}
.tptn-left-thumbs img.tptn_thumb:after{
    content: inherit;
}
.fb-media {
    background-position: 0 0;
}
.youtube-media {
    background-position: -28px -4px;
}
.twitter-media {
    background-position: -54px -4px;
}
.linkedin-media {
    background-position: -83px -4px;
}
.footer .address {
    margin: 0;
    padding: 0px;
}
.footer .address p {
    font-size: 16px;
    color: #E2E0E0;
    margin: 0 0 3px 0;
    padding: 0;
    line-height: 28px;
    font-weight: 200;
}
.footer .address p a {
    font-size: 16px;
    color: #E2E0E0;
    margin: 0;
    padding: 0;
    font-weight: 400;
}
.footer .address p a:hover {
    color: #BC0C0C;
}
.footer .address p span {
    font-size: 16px;
    color: #E2E0E0;
    margin: 0;
    padding: 0;
}
.footer .address p span strong {
    margin-bottom: 18px;
    font-weight: 600;
    display: block;
    line-height: normal;
    vertical-align: top;
    line-height: 10px;
}
.footer-bottom {
    position: relative;
    /*display: inline-block;*/
    margin-top: 50px;
    width: 100%;
}
.slide-slide-bar {
    margin: 0;
    padding: 0;
    position: fixed;
    right: 10px;
    z-index: 999;
    top: 50%;
    width: 46px;
    transform: translateY(-50%);
}
.bottom-slide-bar {
    position: fixed;
    z-index: 9999;
    bottom: 0;
    height: 40px;
    width: 100%;
    left: 0;
}
.float-one {
    padding: 9px 4px 8px 8px !important;
    background: #004F9F;
    line-height: normal;
    border-radius: inherit;
    width: 44%;
    height: 40px;
    text-align: center;
    border: 1px solid #9c9c9c26;
    display: inline-block;
    margin-bottom: 0px;
    float: left !important;
}
.float-one img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    float: left;
}
.float-one p {
    font-size: 16px;
    color: #fff;
    text-align: left;
    padding: 0 10px;
    float: left;
}
.float-three {
    padding: 9px 4px 8px 8px !important;
    background: #009F00;
    line-height:100%;
    border-radius: inherit;
    width: 12%;
    height: 40px;
    text-align: center;
    border: 1px solid #9c9c9c26;
    display: inline-block;
}
.float-three img {
    width: 23px;
    height: 23px;
    margin-top: -2px;
    display: inherit !important;
}
.float-two {
    padding: 9px 4px 8px 8px !important;
    background: #BC0C0C;
    line-height: normal;
    border-radius: inherit;
    width: 44%;
    height: 40px;
    text-align: center;
    border: 1px solid #9c9c9c26;
    float: right !important;
}
.float-two img {
    width: 20px;
    height: 20px;
    margin-top: 0px;
    float: left;
}
.float-two p {
    font-size: 16px;
    color: #fff;
    text-align: left;
    padding: 0 10px;
    float: left;
}
.desktop-visible {
    display: inline-block !important;
}
.floating-one {
    padding: 9px 4px 8px 8px !important;
    background: #004F9F;
    line-height: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #9c9c9c26;
    display: inline-block;
    margin-bottom: 0px;
}
.floating-one img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    margin-left: 4px;
}
.floating-three {
    padding: 9px 4px 8px 8px !important;
    background: #009F00;
    line-height: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #9c9c9c26;
    display: inline-block;
}
.floating-three img {
    width: 23px;
    height: 23px;
    margin-top: -2px;
}
#opener {
    float: left;
    margin: 0px 0 0 0px;
}
.blob.red {
    background: rgba(188, 12, 12, 1);
    box-shadow: 0 0 0 0 rgb(188 12 12);
    animation: pulse-red 2s infinite;
}
.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgb(0 0 0);
    margin: 10px;
    height: 40px;
    width: 40px;
    transform: scale(1);
    animation: pulse-black 2s infinite;
}
.floating-two {
    padding: 9px 4px 8px 8px !important;
    background: #BC0C0C;
    line-height: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #9c9c9c26;
}
.floating-two img {
    width: 20px;
    height: 20px;
    margin-top: 0px;
}
.back-top img {
    margin-top: 0px;
}
.floating-one:hover, .floating-three:hover {
    background: #bc0c0c;
}
@keyframes pulse-red {

    0% {
  
      transform: scale(0.95);
  
      box-shadow: 0 0 0 0 rgba(188, 12, 12, 0.7);
  
    }
  
    70% {
  
      transform: scale(1);
  
      box-shadow: 0 0 0 10px rgba(188, 12, 12, 0);
  
    }
  
    100% {
  
      transform: scale(0.95);
  
      box-shadow: 0 0 0 0 rgba(188, 12, 12, 0);
  
    }
  
  }

.image img {
    display: block;
}
.logo-anchor {
    width: 140px;
    display: inline-block;
}
.footer-logo-gmi {
    width: 120px;
    height: 40px;
    vertical-align: middle;
}
.footer-logo-act {
    width: 130px;
    height: 27px;
    margin-left: 10px;
    vertical-align: middle;
}
.col-6 {
    width: 50%;
}
.col-9 {
    width: 75%;
}
.copy-right {
    font-size: 14px;
    color: #E4E4E4;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 18px;
}
p.copy-right{
    padding: 0px 0px 25px 0px;
}
.copy-right a {
    font-size: 14px;
    color: #E4E4E4;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 18px;
}

.reviews_div {
    font-size: 14px;
    color: #fff;
    line-height: 18px;
    display: inline-block;
}
.reviews_div span {
    display: block;
}
.reviews_div a {
    color: #FF7272;
    transition: 0.5s;
	text-decoration: none;
}
.reviews_div a:hover{
    color: #000;
}
.google-review img {
    width: 30px;
    height: 30px;
}
.google-review a{
    color: #FF7272;
}
.google-review a:hover{
    color: #000;
}
.google-review span {
    font-size: 14px;
    vertical-align: top;
}
p.copy-right br {
    display: none;
}
/* Navigation */
.site-content nav {
    clear: both;
    line-height: 2;
    overflow: hidden;
    padding-bottom:10px;
    position:inherit;
    background:none;
    height:auto;
    }
    #nav-above {
    padding: 24px 0;
    padding: 1.714285714rem 0;
    }
    #nav-above {
    display: none;
    }
    .paged #nav-above {
    display: block;
    }
.nav-previous a, .nav-next a{
    color:#4E4E4E;
    font-size:18px;
    margin-bottom:5px;
    display:block;
    font-weight: 600;
  }
  
  .nav-previous a:hover, .nav-next a:hover{
    color:#e16c03;
  }
  .nav-next,.next-image {
float: right;
text-align: right;
}
.nav-previous,.previous-image {
float: left;
}
.nav-next{
    position: relative;
    padding-right: 25px;  
}
.nav-previous{
    position: relative;
    padding-left: 25px;
}
.nav-previous .meta-nav{
    background: url(images/chevron-left.svg) left center no-repeat;
    display: block;
    width: 10px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 7px;
}
.nav-next .meta-nav{
    background: url(images/chevron-up.svg) right center no-repeat;
    display: block;
    width: 10px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 7px;
}
a.comment-reply-link{
    position: relative;
    padding-left: 16px;
}
.reply a:before {
    content: '';
    width: 16px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 2px;
    background: url(images/reply-icon.svg) no-repeat;
  }
  .reply a:hover:before  {
    filter:invert(45%) sepia(19%) saturate(2417%) hue-rotate(216deg) brightness(139%) contrast(86%);
  }
  .reply span {
    display: none;
  }
.blog-box{
    padding:0px 0px 40px 0px;
    }
    .dpsp-networks-btns-wrapper .dpsp-network-btn {
        border: 1px solid #CBCBCB !important;
        padding:0px 25px 0px 20px !important;
        height: 50px !important;
        max-height: 50px !important;
         line-height: 47px;
    }
    .dpsp-network-icon .dpsp-network-icon-inner svg{
        max-height: 18px !important;
    }
    .dpsp-networks-btns-wrapper .dpsp-network-btn .dpsp-network-icon{
        top: 4px !important;
    }
    .dpsp-networks-btns-wrapper .dpsp-network-btn:hover{
        border: 1px solid #f47f03 !important;
    }
    .wps-seo-booster-star-ratings.bottom-left{
        display: none;
    }
    .dpsp-share-text {
        font-weight: normal !important;
        font-size: 18px !important;
    }
    #dpsp-content-bottom {
        margin-top: 1em !important;
    }
    .breadcrumbs {
        display: flex;
        font-size: 14px;
        color: #A2A2A2;
        margin-bottom: 0px;
        line-height: 41px;
    }
    .breadcrumbs a {
        font-size: 14px;
         line-height: 41px;
    }
    .searchform {
        position: relative;
    }
    .searchform #searchsubmit {
        height: 40px;
        line-height: normal;
        vertical-align: top;
    }
    .searchform input[type='text'] {
        font-size: 16px;
    }
    .searchform #searchsubmit .icon {
        height: 24px;
        width: 24px;
        top: -2px;
    }
    span.sep {
        margin: 0 5px;
        display: inline-block;
        line-height: 41px;
    }
    .breadcrumbs a:hover{
        color: #A2A2A2;
    }
	.blogger-box {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #CBCBCB;
        padding-bottom: 26px;
        margin-bottom: 30px;
    }
    .blog-head h4 {
        line-height: 24px;
        margin-bottom: 0;
        font-size: 16px;
    }
    .blog-head h4 span {
        padding-right: 45px;
        color: #F47F03;
        margin-bottom: 10px;
         display: inline-block;
    }
    .blog-head h4 a {
        color: #F47F03;
        background: #FFECD6 0% 0% no-repeat padding-box;
        border-radius: 12px;
        padding: 1px 14px;
    }
    .blog-head h4 a:hover {
        color: #fff;
        background: #A2A2A2 0% 0% no-repeat padding-box;
    }
    .blog-date {
        color: #A2A2A2;
        font-size: 16px;
        line-height: normal;
        font-weight: 300;
        background: url(images/time-icon.svg) left 5px no-repeat;
        padding-left: 25px;
    }
    .sidebar-cover.mystyle {
        position: fixed;
        bottom: 0;
        flex: 0 0 auto;
        width: 398px;
    }
    /* Sidebar */
.widget-area .widget {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    padding-bottom: 48px;
    
    }
    
    .widget-area .widget p,
    .widget-area .widget li,
    .widget-area .widget .textwidget {
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
    }
    .widget-area .widget p {
    margin-bottom: 24px;
    margin-bottom: 1.714285714rem;
    }
    .widget-area .textwidget ul {
    list-style: disc outside;
    margin: 0 0 24px;
    margin: 0 0 1.714285714rem;
    }
    .widget-area .textwidget li {
    margin-left: 36px;
    margin-left: 2.571428571rem;
    }
    
    
    .widget-area #s {
    width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
    }  
    .widget-area ul li:last-of-type{
        border: none;
    }
    .entry-content ul,.entry-content ol{
        padding-left: 0;
    }
    .entry-content li,
    .comment-content li,
    .mu_register li {
    margin: 0 0 0 20px;
    font-size:16px;
    }
/*Banner header*/
.banner-wrap {
    margin:0px 0 37px 0;
    padding: 0px;
    width: 100%;
    position: relative;
    height: 185px;
    background: #fff;
}
.headertop {
    margin: 0px;
    padding: 25px 0 0 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.common-container {
    max-width: 1320px;
    margin: auto;
    padding: 0px 10px;
}
.logo-anchor {
    width: 140px;
    display: inline-block;
}
.main-logo {
    display: block;
    float: left;
    width: 140px;
    height: 47px;
    margin-left: 0px;
}
.top-right {
    margin: 0px 40px 0 0;
    padding: 0 0 0px 0px;
    float: right;
    position: relative;
    align-items: center;
   /* display: flex;*/
}
.tptn_counter {
    display: none;
}
.top-right:before, .top-right:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: -3px;
}
.top-right a {
    font-size: 14px;
    color: #2D3646;
    margin: 0 5px 0 5px;
    font-weight: 600;
}
.top-right a:hover {
    color: #BC0C0C;
}
.top-right a.active {
    color: #BC0C0C;
}
.copy-right a:hover {
    color: #FF7272;
}
.top-right a i {
    margin-right: 3px;
    position: relative;
    top: 0;
}
.top-right a img {
    width: 20px;
    height: 20px;
}
img.animated.bounceIn.mobile_top {
    display: none;
}
.top-right a:last-child {
    margin-right: 0;
    font-family: 'Tajawal', sans-serif !important;
}
.top-right a span {
    font-size: 14px;
    color: #2D3646;
    transition: all 0.5s ease;
    font-family: 'Cabin' !important;
    position: relative;
    padding-left: 0px;
    left: 0px;
    float: right;
}
.wpml-ls-legacy-list-horizontal {
    border: inherit;
    padding: inherit;
    clear: inherit;
    margin: 0;
    font-weight: 600;
    display: inline-block;
}
.top-right .wpml-ls-legacy-list-horizontal a span{
    float: inherit;
    font-size: 17px;
}
.call-button-top {
    position: relative;
    left: 10px;
}
.clear {
    clear: both;
    margin: 0px;
    padding: 0px;
}
a.next.page-numbers, a.prev.page-numbers {
    padding: 0px 25px 0px 25px;
}
a.page-numbers {
    border: 1px solid #CBCBCB;
    border-radius: 6px;
    padding: 0px 15px 0px 15px;
    color: #7E7E7E;
    font-size: 16px;
    line-height: 38px;
    font-weight: 600;
    margin: 0 5px;
    height: 38px;
    display: inline-block;
}
span.page-numbers.current {
    background: #2D3647;
    border-radius: 6px;
    border: 1px solid #2D3647;
    color: #fff;
    padding: 0px 15px 0px 15px;
    font-size: 16px;
    /*line-height: 28px;*/
    font-weight: 600;
    height: 38px;
    display: inline-block;
}
.main-menu-wrap {
    clear: both;
    padding: 11px 0 10px 0;
    top: 80px;
    width: 100%;
    position: absolute;
}
.wsmenu-list.cls-min-height {
    height: 64px;
}
.gmi-small-logo {
    display: none;
}
.mobile-top {
    display: none !important;
}
.megamenu .menu-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Titillium Web';
    font-size: 28px;
    font-style: normal;
    font-weight: bold;
    line-height: 29.7px;
    color: #2C3546;
}
.megamenu .menu-title i {
    margin-right: 15px;
}
.smaller {
    background: #fff;
    height: 74px;
    position: fixed;
    top: 0;
    z-index: 1000;
}
.smaller:before {
    content: "";
    position: absolute;
    bottom: 0;
    background: #bc0c0c;
    height: 3px;
    width: 100%;
}
.smaller .wsmenu-list {
    max-width: 1250px;
    width: 100%;
}

.smaller .gmi-small-logo {
    display: block;
    float: left;
    margin-right: 5px;
    height: 40px;
    width: 40px;
    object-fit: none;
    object-position: -327px -73px;
    transition: all .2s ease;
}
.smaller .wsmenu-list > li > a {
    padding: 0px 24px 0 18px;
}
.wsmenu-list>li>a{
    padding: 0 25px 0 25px;
}
.ar-link {
    width: 50px;
    margin: 0px 0px 0px 0px;
    border-radius: 20px;
    font-size: 18px !important;
    padding: 5px 10px !important;
    position: relative;
    top: 0px;
    text-align: center;
    color: #333 !important;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif !important;
}
/*banner header ends*/

/*blog listing*/

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer{
    display: none;
}
.blog-listing .widget-area{
    padding-left: 0;
   
    text-align: right;
}
.blog-listing .widget-area .widget{
border: 0;
padding-right: 0;
padding-bottom: 25px;
}
.flex-class{
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 25px;
}
.blog-listing .widget-area .flex-class .widget {
    border: 0;
    padding: 0;
    margin-bottom: 0;
}
.blog-listing .widget-area .flex-class .archive-title {
    font-size: 20px;
    line-height: 42px;
    color: #A2A2A2;
    text-transform: capitalize;
}
.blog-listing .widget-area .widget-title{
display: none;
}
.blog-listing .widget-area .widget.widget_categories select{
border: 1px solid #CBCBCB;
border-radius: 6px;
background: #F7F7F7;
color: #7E7E7E;
font-size: 16px;
line-height: 24px;
text-transform: uppercase;
padding: 10px 40px;
background: url(images/arrow-thin.png) 96% no-repeat;
appearance: none;
width: 300px;
}

.states-wrap{
    text-align:center;
}
.states-wrap .label-1 {
    font-size: 36px;
    line-height: normal !important;
    margin: 0 0 10px;
}
.states-wrap .label-2 {
    font-weight: 700;
    font-size: 54px;
    line-height: normal !important;
    margin: 0 0 45px;
    color: #555;
}


@media not all and (min-resolution:.001dpcm)
{ @supports (-webkit-appearance:none) and (stroke-color:transparent) {
   
    
    .masonry {
        line-height: 100px;
    }
    .masonry .blog-box {
        margin: 0 0 0.1em !important;
    }
}}
.masonry {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    column-gap: 1em;
}
.masonry .blog-box {
    display: inline-block;
    margin: 0 0 1em;
    width: 100%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 20px #0000001C;
    border-radius: 10px;
    padding: 25px 25px 40px;
    vertical-align: text-top;
}
.masonry .blog-box .entry-header .entry-title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    text-transform: none;
}
.masonry .blog-box .blogger-box, .masonry .blog-box .comments-link, .masonry .navigation{
    display: none;
}
.blog-listing .pagination{
    text-align: center;
    display: block;
    margin: 45px 0 75px;
}

.masonry .blog-box .more-link{
    text-transform: uppercase;
    padding: 10px 20px 10px 25px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #BC0C0C;
    position: relative;
    transition: 0.5s all;
    z-index: 1;
    border: 0;
    background: none;
    text-align: left;
    width: auto;
    line-height: normal;
    display: table;
}
.masonry .blog-box .more-link:before {
    width: 10px;
    content: "";
    position: absolute;
    left: 0;
    background: #BC0C0C;
    height: 100%;
    top: 0;
    transition: 0.5s all;
    z-index: -1;
}
.masonry .blog-box .more-link:hover {
    color: #fff;
}
.masonry .blog-box .more-link:hover:before {
    width: 100%;
    transition: 0.5s all;
}
.masonry .blog-box .more-link .meta-nav{
    display: none;
}
.post-thumbnail.listing-preview {
    overflow: hidden;
}
.archive-header .archive-title {
    font-size: 18px;
    line-height: 42px;
    color: #A2A2A2;
    text-transform: capitalize;
}
.post-thumbnail img {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    transform: scale(1);
    opacity: 1;
    transition: all 0.5s ease-in-out;
    margin-bottom: 24px;
}
.post-thumbnail.listing-preview img:hover {
    transform: scale(1.1);
    opacity: 0.7;
}
/*blog listing ends*/
@media (max-width: 1601px) {
    .common-container {
        max-width: 1260px;
    }
}
@media (max-width: 1600px) {
    .main-logo {
        margin-left: -33px;
    }

    .entry-content p{
        font-size:16px;
        line-height:38px !important;        
        }
    .top-search-area span {
        font-size: 24px;
    }
    .nav-previous a, .nav-next a{
        font-size:16px;
    }
		.entry-header .entry-title {
			font-size: 40px;
			line-height: 50px;	
		  }
		  .widget-area .widget h3 {
			font-size:24px;
			}
	  }
@media (max-width: 1366px) {
      .sidebar-cover.mystyle {
        width: 337px;
    }
}
 @media only screen and (max-width: 1025px){
    .sidebar-cover.mystyle {
        width: 278px;
    }
.wsmenu .wsmenu-list {
    height: 100%;}
}
@media only screen and (max-width: 1024px){
    .blog-listing .widget-area {
        padding-left: 0  !important;
    }
    .widget-area .widget{
        padding: 30px;
    }
    .widget-area {
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
    }
    .widget-area ul li a {
        font-size: 14px;
    }
    .top-search-area {
       
        z-index: 999;
    }
    .headertop{
        height: 100px  !important;
    }
    }
    @media only screen and (max-width: 992px){
        .masonry {
            -webkit-column-count: 2;
            -moz-column-count: 2;
            column-count: 2;
        }
        .nav-previous,.nav-next{
            width: 50%;
        }
    }
 @media only screen and (max-width: 902px){
    .mobile-visible {
        display: block !important;
    }
    .desktop-visible {
        display: none !important;
    }
    .top-search-area span{
        display: block;
        margin-bottom: 10px;  
    }
    .top-search-area {
        display: block;
        padding: 18px;
    }
    .search-area {
        width: auto;
    }
    .top-right {
        margin: 3px 0px 0;
    }
    .google-review span {
        vertical-align: sub;
    }
    .title-prim span {
        vertical-align: bottom;
    }
    .footer-logo-gmi {
        margin-bottom: 30px;
    }
    .google-review {
        margin-top: 25px;
    }
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        padding: 0 0px;
        width: 100%;
    }
    p.copy-right {
        font-size: 13px !important;
        line-height: 20px !important;
        margin-bottom: 0px;
    }
    p.copy-right br {
        display: block;
    }
    .footer-logo-act {
        margin-bottom: 30px;
    }
    .social-media a {
        display: inline-block;
    }
    .social-media {
        text-align: center;
        float: none;
    }
    .footer-top p {
        padding-bottom: 0px;
    }
    .footer-top h4 {
        padding-bottom: 0px;
    }
    .footer .col {
        width: 100%;
    }
    .footer-top .col-3, .footer-top .col-2 {
        margin-bottom: 35px;
    }
    .footer-top .title-prim img {
        width: 132px;
        float: inherit;
        margin-right: 0;
    }
    .footer-top .title-prim {
        text-align: center;
        color: #fff;
        font-size: 40px;
        line-height: 39px;
        margin-bottom: 30px;
    }
    .footer-top {
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: center;
        border-bottom: 0;
    }
    .footer .common-container {
        max-width: 1260px;
        margin: auto;
        padding: 0px 25px;
    }
    .footer-pattern {
        padding: 50px 0 50px;
        display: inline-block;
    }
.hide {
    display: none;
}
 }
 @media screen and (min-width: 1024px) and (max-width: 1230px){
.wsmenu-list > li > a {
    padding: 0 8.5px ;
}
.smaller .wsmenu-list > li > a {
    padding: 0px 8.5px;
}
}
 @media only screen and (min-width: 1024px) and (max-width: 1199px){
    .footer-bottom .col-3, .footer-bottom .col-6, .footer-bottom .col-9 {
        width: 100%;
    }
 .footer .col {
     width: 100%;
 }
}
@media only screen and (min-width: 1023px) and (max-width: 1300px){
.common-container {
    margin: auto;
    padding: 0px 30px;
}
}
@media only screen and (min-width: 320px) and (max-width: 1024px){
    span.dpsp-network-label {
        display: block !important
    }

    .top-right .wpml-ls-legacy-list-horizontal a span {
        display: inline-block !important;
        vertical-align: -webkit-baseline-middle;
    }
    .masonry .blog-box .entry-header .entry-title {
        font-size: 18px;
        line-height: 22px;
    }
    .mobile-top a {
        font-family: 'Titillium Web';
        margin-right: 8px;
        font-size: 14px;
        color: #fff !important;
        display: block;
        line-height: 34px;
        font-weight: 400;
        display: inline-block;
        letter-spacing: 0px;
    }
    .menuopen .mobile-top {
        display: block !important;
        margin-bottom: 20px;
        padding: 16px 30px;
        z-index: 1001;
        margin-top: 0px;
        background: #004f9f;
    }
    .menuopen .gmi-small-logo {
        position: absolute;
        right: 14px;
        top: 10px;
        display: block;
        float: left;
        margin-right: 5px;
        height: 40px;
        width: 40px;
        object-fit: none;
        object-position: -327px -73px;
        transition: all .2s ease;
    }
    img.desktop_top {
        display: none;
    }
    img.animated.bounceIn.mobile_top {
        display: inline-block;
        padding-top: 7px;
        vertical-align: top;
        width: 20px;
    }
    .top-right a:last-child {
        margin-right: 0;
        font-family: 'Tajawal', sans-serif !important;
        display: inline-block;
        margin-right: 20px;
        line-height: normal;
    }
    .top-right .wpml-ls-legacy-list-horizontal a {
        margin-right: 0;
        padding: 0;
    }
    .top-right a.ar-link {
        display: inline-block;
        vertical-align: bottom;
    }
    .top-right a {
        display: none;
    }
    .main-logo {
        display: block;
        float: left;
        width: 140px;
        margin-left: 0;
    }
    .headertop {
        position: fixed;
        background: #fff;
        z-index: 999;
        padding: 15px;
    }
    .footer-bottom {
        top: 0;
        margin-top: 0;
        text-align: center;
        display: block !important;
        --bs-gutter-x: 0;
    }
    .footer-pattern .adress_sec {
        text-align: center;
        width: 100%;
        margin-bottom: 25px;
    }
    .footer-pattern {
        padding: 30px 0 50px 0;
    }
.footer {
    height: auto;
}
}
@media only screen and (min-width: 320px) and (max-width: 767px){
   
    .sidebar-cover.mystyle{
        position: relative;
        bottom: auto;
        width: auto;
    }
    #main-content .container{
        max-width: 1260px;
        margin: auto;
        padding: 0px 22px;
    }
    .masonry {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .blogger-box {
        display: block;
    }
    .blog-date {
        margin-top: 10px;
    }
    .entry-header .entry-title {
        font-size: 30px;
        line-height: 36px;
    }
    .top-search-area span {
        font-size: 20px;
    }
    .is-form-style input.is-search-input{
        font-size: 16px !important;
        line-height: 24px;
    }
    .banner-wrap{
        height: 140px;
    }
    .top-search-area {
        margin-top: -80px;
    }
    .ar-link {
        top: -3px;
        right: -10px;
    }
    .headertop .common-container {
        padding: 0;
    }
    .top-right a span {
        display: none !important;
    }
    .mobile-top a {
        width: 28%;
    }
.main-logo {
    width: 118px;
    margin-left: 60px;
}
}
@media only screen and (min-width: 903px) and (max-width: 1024px){
    .main-logo {
        width: 118px;
        margin-left: 60px;
    }
    .common-container {
        max-width: 1260px;
        margin: auto;
        padding: 0px 30px;
    }
    .headertop {
        margin: 0px;
        padding: 15px 0 0 0;
        top: 0;
        width: 100%;
        height: 75px;
    }
    .footer ul {
        margin: 0;
        padding: 0;
        display: none;
    }
    .footer-top .title-prim {
        color: #fff;
        font-size: 40px;
        line-height: 55px;
        margin-bottom: 0;
    }
    .footer .common-container{
        max-width: 1260px;
        margin: auto;
        padding: 0px 30px;
    }
.footer-pattern {
    padding: 70px 0 50px 0 !important;
    display: inline-block;
    width: 100%;
}
}
@media only screen and (min-width: 768px) and (max-width: 1920px){
.widget-area {
    padding-left: 30px;
        }
    }
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .main-menu-wrap {
        z-index: inherit;
    }
    .top-right a span {
        display: none;
    }
    .top-right a:last-child {
        line-height: normal;
        font-family: 'Tajawal', sans-serif !important;
    }
.banner-wrap {
    height: auto;
    margin-top: 50px;
}
.headertop {
    position: fixed;
    background: #fff;
    z-index: 999;
}
}
@media only screen and (min-width: 768px) and (max-width: 1023px){
.footer-bottom .col-3, .footer-bottom .col-6 {
    width: 100%;
}
}
@media only screen and (min-width: 768px) and (max-width: 902px){
    .main-logo {
        width: 118px;
        margin-left: 60px;
    }
.footer-top .col-4, .footer-top .col-3, .footer-top .col-2 {
    width: 100%;
}
}
@media (max-width: 475px) {
    .states-wrap .label-1{
        font-size:30px;
    }
    .states-wrap .label-2{
        font-size:45px; 
    }
    .blog-listing .widget-area .widget.widget_categories select{
        width: 100%;
    }
a.page-numbers, span.page-numbers.current {
         padding: 5px 10px;
        font-size: 14px;
        line-height: 24px;
        margin: 5px 3px;
        display: inline-block;
    }
a.next.page-numbers, a.prev.page-numbers {
        padding: 5px 15px;

    }
 
.breadcrumbs{
    line-height: 16px;
}
.blog-head {
    display: flex;
}
.blog-head h4 span {
    padding-right: 117px;
    width: 70%;
   /* margin-bottom: 8px;
    width: 78%;
    display: inline-block;*/
}
}



/*CSS for readmore arabic - start*/

.rtl .masonry .blog-box .more-link{
    text-transform: uppercase;
    padding: 10px 20px 10px 25px;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #BC0C0C;
    position: relative;
    transition: 0.5s all;
    z-index: 1;
    border: 0;
    background: none;
    text-align: left;
    width: auto;
    line-height: normal;
    display: table;
}
.rtl .masonry .blog-box .more-link:before {
    width: 10px;
    content: "";
    position: absolute;
    right: 0;
    background: #BC0C0C;
    height: 100%;
    top: 0;
    transition: 0.5s all;
    z-index: -1;
}
.rtl .masonry .blog-box .more-link:hover {
    color: #fff;
}
.rtl .masonry .blog-box .more-link:hover:before {
    width: 100%;
    transition: 0.5s all;
}
.rtl .masonry .blog-box .more-link .meta-nav{
    display: none;
}

/*CSS for readmore arabic - End*/


.entry-content li {
  font-size: 16px;
  line-height: 38px !important;
  margin-bottom: 24px;
  font-weight: 400;
  color: #666666;
  font-family: 'Open Sans',sans-serif;
}
.entry-content li p {
  margin: 0 !important;
  font-size: 16px;
  line-height: 38px !important;
}