/* ==========================================================================
   Legacy CSS - Modernized for AlphaEssays Theme
   ========================================================================== */

/* Remove WordPress admin bar margin override */
html {
    margin-top: 0 !important;
}

/* Modern body styles using CSS custom properties */
body {
    background: var(--background-color, #fff);
    color: var(--text-color, #4c5862);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem; /* 14px equivalent */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Modern flexbox layout instead of display: table */
.main-wrapper {
  /*  display: flex;
    flex-direction: column;
    width: 100%;*/
}

/* Ensure full height layout */
html, body {
    height: 100%;
}

p, ul {
    font: 18px 'Open Sans', Arial, sans-serif;
    

}

.entry-content ul {
    margin-left: 25px;
}

body, button {
    font: 14px 'Open Sans', Arial, sans-serif;
}

/* Modern rainbow gradient effect */
.rainbow {
    position: relative;
    height: 5px;
    width: 100%;
   /* background: linear-gradient(
        to right,
        #fa9273 0%,
        #fa9273 20%,
         #fa9273 20%,
         #fa9273 40%,
        #94c55a 40%,
        #94c55a 60%,
        #f9bf56 60%,
        #f9bf56 80%,
        #aabac5 80%,
        #aabac5 100%
    );
  background:  #fa9273;*/
    border-radius: 2.5px;
}

/* Remove duplicate pseudo-elements and use single gradient */
.rainbow::before,
.rainbow::after {
    display: none;
}

/* Modern header styles */
header {
    background: var(--background-color, #fff);
    border-bottom: 1px solid var(--border-color, #efefef);
    position: relative;
    z-index: 100;
}

header a {
    color: var(--text-color, #4c5862);
    transition: color var(--transition-base, 0.3s ease);
}

header a:hover,
header a:focus {
    color: var(--primary-color, #0074D9);
}

header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

/* Modern flex layout instead of float */
/*.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}
*/
/* Navbar improvements */
.navbar-right {
    margin-right: 0;
    margin-left: auto;
}

.navbar-collapse {
    padding: 0;
}

/* Modern logo styles */
header a.logo {
    display: flex;
    align-items: center;
    width: auto;
    max-width: 180px;
    padding: 1.25rem 0;
    transition: transform var(--transition-base, 0.3s ease);
}

header a.logo:hover {
    transform: scale(1.05);
}

header a.logo img {
    max-width: 100%;
    height: auto;
}

/* Modern navigation styles */
.navbar-header nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
	padding:30px 0;
}

.navbar-header nav li {
    margin: 0;
}

.navbar-header nav li a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius, 4px);
    transition: all var(--transition-base, 0.3s ease);
}

.navbar-header nav li a:hover,
.navbar-header nav li a:focus {
    background: var(--primary-color, #0074D9);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-color, #0074D9);
    border-radius: var(--border-radius, 4px);
    padding: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-base, 0.3s ease);
}

.navbar-toggle:hover {
    background: var(--primary-color, #0074D9);
    color: white;
}

.navbar-toggle .fa {
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .navbar-toggle {
        display: block;
    }
    
    .navbar-header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-medium, 0 4px 8px rgba(0, 0, 0, 0.15));
        border-radius: var(--border-radius, 4px);
        padding: 1rem;
        flex-direction: column;
        gap: 0;
    }
    
    .navbar-header nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .navbar-header nav li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color, #efefef);
    }
    
    .navbar-header nav li:last-child a {
        border-bottom: none;
    }
}

section.website-content {
   float: left;
width: 100%;
border-top: 1px solid #efefef;
padding-top: 20px;
}

section.website-content::before, .registration::before, .passwordReset::before, .error404::before {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    top: -60px;
    height: 60px;
    width: 100%;
    margin-left: -50%;
    background: #C0C0C0;
    border-radius: 15%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.toTop {
    position: absolute;
    top: 0;
    right: -60px;
    width: 47px;
    height: 47px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    visibility: visible;
    text-indent: -999px;
    overflow: hidden;
    visibility: visible;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    filter: alpha(opacity=0);
    opacity: 0;
}

.best_column_title {
    margin: 50px 0;
}

/* Modern footer styles */
.footer {
   /* background-color: var(--footer-background, #ecf0f2);*/
    margin-top: auto;
    padding: 3rem 0;
   /* border-top: 1px solid var(--border-color, #efefef);*/
 
}

/* Simplified decorative element */
.footer::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--accent-color, #fa9273) 0%,
         #fa9273 25%,
        #94c55a 50%,
        #f9bf56 75%,
        #aabac5 100%
    );
}

/* Remove complex decorative elements for cleaner modern look */
.footer .container::after {
    display: none;
}

.footer .rainbow {
    margin-bottom: 2rem;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Modern footer grid layout */
.footer .row {
    /*display: grid;  
	gap: 2rem;*/
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   
    margin-bottom: 2rem;
}

.footer .row #menu-footer-links-strip li {
    margin: 10px;
    float: left;
    
}

@media (max-width: 768px) {
    .footer .row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
}

/* Modern typography - using clamp for responsive sizing */
h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.375rem, 3.5vw, 1.75rem);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Modern paragraph styles */
p {
  
    margin-bottom: 1.5rem;
}

/* Modern footer links */
.blog-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-links ul {
    width: 100%;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul a {
    color: var(--text-color, #333);
    font-size: 0.875rem;
    line-height: 1.5;
    text-decoration: none;
    transition: all var(--transition-base, 0.3s ease);
    display: inline-block;
    padding: 0.25rem 0;
}

.footer ul a:hover,
.footer ul a:focus {
    color: var(--primary-color,  #fa9273);
    transform: translateX(4px);
}

/* Social media styles */
.footer .social ul {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.footer .social ul li {
    margin-bottom: 0;
}

.footer .social ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color, #0074D9);
    color: white;
    transition: all var(--transition-base, 0.3s ease);
}

.footer .social ul a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium, 0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Modern entry header styles */
.entry-header h1.entry-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary-color, #001f3f);
}

/* Modern steps/process section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
}

.steps > div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius, 4px);
    box-shadow: var(--shadow-light, 0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all var(--transition-base, 0.3s ease);
}

.steps > div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium, 0 4px 8px rgba(0, 0, 0, 0.15));
}

.steps > div:first-child {
    padding: 1.5rem;
    background: white;
}

.steps div img {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0;
}

.stepTitle {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color, #001f3f);
}

.step-content {
    flex: 1;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-color, #4c5862);
    margin: 0;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .steps > div {
        padding: 1rem;
    }
}
}

.steps > div {
   
  
   
    background: transparent url("../images/spriteIcons.png") no-repeat scroll 0px -113px;
}

.steps > div {
     float: left;
    background: transparent none repeat scroll 0% 0%;
    width: 33%;
      height: 60px;
    border-right: 1px solid #efefef;
    padding: 0px 3px;
}

.twoBtWrap {
    margin: 20px 0px !important;
    margin: 40px 0px;
    text-align: center;
}

.darkOrangeBt {
    /*background: #F17F02;*/
    height: 48px;
    line-height: 48px;
    font-size: 20px;
    padding: 10px 20px !important;
    color: #fff;
}

.darkOrangeBt:hover {
    color: #fff;
    text-decoration: none;

}

/* nav 2 */
nav.b_menu {
    background-color: #F7F8F6;
    padding: 15px 20px;
    float: left;
}

nav.b_menu h2 {
    margin: 0 0 .5em;
}

nav.b_menu ul {
    list-style: none;
}

nav.b_menu ul li {
    display: inline-block;
    width: 25%;
}

nav.b_menu a {
    display: block;
    color: #707070;
    font-size: 0.9em;
    line-height: 1.5em;
    padding-bottom: 0.5em;
    float:left;
    padding-left: 18px;
    background: url('../images/check2.png') no-repeat 0 .35em;
    text-decoration: none;
}
nav.b_menu ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
nav.b_menu ul.js_on li {
    display: block;
    width: auto;
}

/* /nav 2 */
.home-choices {
float: left;
width: 100%;
position: relative;
overflow: hidden;
}

.testimonial
{
    overflow: hidden;
    position: relative;
}

.calcicon {
    position: relative;
    margin: -55%;
}

.bg-gray {
    background: #F7F8F6;

}

.header_strip {
    padding: 30px 0;
}

.header_strip  p {

    font-size: 1.6em;
    line-height: 1.9em;
    text-align: center;

}

.header_strip .btn {
    background: #8ebc58;
    border-radius: 0;
    padding: 10px 15px;
    text-transform: uppercase;
    color: #fff;
}
.block-title
{
    background:  #fa9273;
    margin: 0;
    padding: 20px 10px;
    color: #fff;
}

 .block-title h3
{
    text-transform: uppercase;
    padding:0;
    margin: 0;
}

.calculate-price
{
    background: #ECF0F2;
    padding:10px;
    margin-bottom: 20px;
}
.calculate-price .form-control
{
    border-radius: 0;
    box-shadow: none;

}


.navbar-fixed-top
{
    border-bottom: 3px solid #E0E0E0;
    background: #fff;
}
.btn_2{
    background: #fa9273;
    padding:10px 15px;
    text-transform: uppercase;
    border-radius: 0;
}
.choosing-heading
{
    color:  #fa9273;
    
}
.place-order-form
{
    margin-top:20px;
}
.home-choices.calc-strip  ul li {
    padding-left: 25px;
    list-style: none;
    position: relative;
    font-size: 18px;
    line-height: 40px;
}
.home-choices.calc-strip ul li::before {
    position: absolute;
    display: block;
    content: '';
    top: 16px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color:  #fa9273;
}
.bg-orange
{
    background: #FAAF18;
    color: #fff;
}

.text-orange
{
    color: #FAAF18;
}
.toplinks
{
    background: #fff;
}
.bg-blue
{

    background:  #45C2E6;
    color: #fff;
}
.bg-green
{
    background: #87C23F;
    color: #fff;
}
.green {
    color: #87C23F;
}

.bg-pale {
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    background-color: #F9FCFD;
color:#fff;
    padding-bottom: 50px;
}


.bg-pale h2{
    color: #1098d0;
}

.footer .social ul {
    overflow: hidden;
    float: left;
}
.footer .social ul li {
    float: left;
    padding: 0px 20px 9px 0px;
}
.footer .social ul li a.fb {
    background-position: 0px -299px;
}
.footer .social ul li a {
    display: block;
    width: 31px;
    height: 31px;
    background: transparent url("../images/bgsprite.svg") no-repeat scroll 0% 0%;
    transition: all 0.3s ease 0s;

}
.footer .social ul li a.fb {
    background-position: 0px -299px;
}
.footer .social ul li a:hover {
    opacity: 0.8;
}
.footer .payment, .footer .payment h3, .footer .payment h3 img {
    font-size: 13px;
}
.footer .payment {
    width: 100%;
    background-color: #FFF;
    margin-bottom: 15px;
    text-align: center;
}

.footer .social ul li a.twtr {
    background-position: -40px -299px;
}

.footer .social ul li a.gpls {
    background-position: -80px -299px;
}
.homepage-h1
{

    font-size: 14px;
    padding: 0 0 0px;
    margin:0;


}

h3.droid {
    float: left;
    margin: 0px !important;
}
ul.whychoose
{
    list-style: none;
    color: #4c5862;
    font-size: 1.25em;
    line-height: 2em;

}

ul.whychoose li
{
    text-align: left;
    margin-bottom:5px ;
}
ul.whychoose li i
{
   color: #fff;
    background: #00a65a;
    padding:10px;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    border-radius:0px;
}
.testimony .item
{
    color:#7e858b;

    border-radius: 0;
    padding:10px;
    margin:20px;
}
/*
.writerprofile img.writer{

}
.order-title
 {
     font-size:16px;
    border-bottom: 1px   dotted;
     font-style: italic;
 }
.writerprofile
{
    font-size:10px;
    text-align: center;
}
.order-testim
{
    font-size:16px;
    margin-top:15px;

    font-style: italic;
}
 

.info-box {
    display: block;
    min-height: 90px;

    width: 100%;
  
    border-radius: 2px;
    margin-bottom: 15px;
}

.info-box-icon {
    border-top-left-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 2px;
    display: block;
    float: left;
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 45px;
    line-height: 90px;background: #8bcff1;
    color: #fff;

}
.icon-bars a, .icon-bars a:hover, .icon-bars a:active{
  text-transform: none;
    text-decoration: none;
    height: 100px;
   
}
.info-box-content {
    padding: 5px 7px;
    margin-left: 90px;
}

.info-box-content p {
    text-transform: uppercase;
    font-weight:bold;
    font-size:16px;
    line-height: 50px;
    text-decoration: none;
}

.info-box-text {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.info-box-number {
    display: block;
    font-weight: bold;
    font-size: 18px;
}


*/
.text-lowercase {
    text-transform: lowercase !important;
}

.bg-icons p
{
    color: #fff;
    
}

.text-gray
{
    color: #d2d6de !important;
}

.margin-40
{
    margin:40px 0;
}

.sidebar li
{
    font-size : 16px ;
    list-style: none;
    line-height: 32px;
    margin-left:  0px;
    color: #FAAF18;
}

.sidebar{
    border: 1px solid #E0E0E0;
    margin-bottom: 20px;
}
.sidebar ul{
    margin-left: 0px !important;
}

/*payment*/
.footer .payment {
    width: 100%;
    background-color: #fff;
    margin-bottom:15px;
    text-align: center;
}
.footer .payment a {
    display:block;
    padding: 10px;
    text-align:center;
}
.footer .payment a img {
    display:inline-block;
}
.footer .payment h3 , .footer .social h3 {
    line-height: 33px;
    background-color: #ced8df;
    color: #3d3d3d;
    text-align: center;
    float:left;
    width: 100%;
    font-size: 16px !important;
}

.footer .payment, .footer .payment h3, .footer .payment h3 img {
    font-size: 13px;
}

.social ul{

    padding: 20px;
    background: #fff;
    width: 100%;
}

.blog-excerpt
{

    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 30px;
    padding-top: 15px;
    float: left;
}
.navigation .screen-reader-text {
    display: none;
}
.entry-title  a, .entry-title  a:hover{
    text-transform: none;
    text-decoration: none;
}
.pix-wrapper.pix-load-more input
{
    border: 1px solid #fa9273;
    background: #fa9273;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 0;
    color:#fff;

}
.pix-wrapper.pix-load-more
{
    margin: 40px;
}


.home .website-content
{
      background: #F7F8F6;
}
.panel-default {
    border-color:  #fa9273 !important;
    border-radius: 0;
    margin-top: 30px;
}
.panel-default > .panel-heading 
{
    background:  #fa9273 !important;
    color:#fff !important;
    border-radius: 0;
}
.text-default
{
    color:  #fa9273 !important;
}
.panel-title
{
 color:#fff !important;
font-size: 20px;
line-height: 22px;
 
 
}

 .form-control
{
border-radius: 0px;
box-shadow : inset 0 1px 1px #fff;
-webkit-box-shadow:inset 0 1px 1px #fff;

}
.btn-info
{
    background:  #fa9273;
    border-radius: 0px;
    border: 1px solid  #fa9273;
}

.entry-content article>* {
    /* font: 14px 'Open Sans', Arial, sans-serif; */
    clear: both;
    width: 100%;
}

.colored-0
{
    color: #E65C23;
}
.colored-1
{
    color: #87C23F;
}
.colored-2
{
    color: #68C7B3;
}
.colored-3
{
    color: #45C2E6;
}

.bg-0, .bg-0 *
{
    background:  #fa9273;
}
.bg-1, .bg-1 *
{
    background: #87C23F;
}
.bg-2, .bg-2 *
{
    background: #68C7B3;
}
.bg-3, .bg-3 *
{
    background:   #45C2E6;
}


.padding-50-0
{
    padding: 50px 0;
}
.padding-25-0
{
 padding: 25px 0;


}

.btn-group .btn-default,
 .btn-group .btn-default:hover, 
 .btn-group .btn-default:active,
 input[type=submit]
  {
    color:  #fa9273;
    background: #fff;
    border-color:  #fa9273;
    border-radius: 0px ;
    -webkit-box-shadow: inset 0 0px 0px #fff;
    -ms-box-shadow: inset 0 0px 0px rgba(1,1,1,0);
    box-shadow: inset 0 0px 0px #fff;
    border-radius: 0 !important;
    outline: none;
    font-size: 12px;
}
 .btn-group .btn-default.active
 {
     background :  #fa9273;
     color: #fff;
     outline: none;
 }

#orderpagedefaults .form-control{
    font-size: 12px;
}
#orderpagedefaults > *
{
    font-size: 12px;
}
.form-control {
    -webkit-box-shadow: inset 0 0px 0px #fff;
    -ms-box-shadow: inset 0 0px 0px rgba(1,1,1,0);
    box-shadow: inset 0 0px 0px #fff;
    border-radius: 0 !important;

}

.country-list.dropdown-menu {
    height: 200px;
    overflow-y: scroll;
}
.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group
{
    margin-right: -1px;
background: #efefef;
}

.widget-body.block-body {
    background: #ECF0F2;
    float: left;
    padding: 10px;
}
.block.widget {
    background: #ECF0F2;
}
.widget-body.block-body > * {
    float: left;
}

.btn.btn-flat {
    background-image: none;
    border-radius: 0px;
    border: 0;
}

.form-alert {
    background: #f2dede;
    border: 1px solid #eed3d7;
    color: #b94a48;
    border-radius: 3px;
    padding: 7px 10px;
    margin-top: 10px;
    margin-bottom: 0;
    text-shadow: none;
}

.pricestable td, .pricestable th {
       font-size: 16px;
    padding: 12px !important;
    text-align: center;
}
.pricestable 
{
        margin-top: 20px;
}

.no-padding
{
    padding: 0 0 !important;
}

.no-margin
{
    margin: 0 0 !important;
}

.discount-cta
{
       background: #000;
    padding: 50px 0;
    width: 100%;
    float: left;
}

.field-validation-error{
    border-color: #e7c3c3;
background: #e7c3c3;
padding: 3px 6px;
float: left;
margin: 5px 0;
}
.form-horizontal .control-label
{
    
    text-align: left;

}

.panel-heading  .nav.nav-tabs.nav-justified li, 
.panel-heading  .nav.nav-tabs.nav-justified li a, 
.panel-heading .nav.nav-tabs.nav-justified li:hover a, 
.panel-heading  .nav.nav-tabs.nav-justified li:active a, 
.panel-heading  .nav.nav-tabs.nav-justified {
    border: 0px none;
    background: transparent !important;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    outline: none;
}
.panel-heading  .nav.nav-tabs.nav-justified li:active a, .panel-heading  .nav.nav-tabs.nav-justified li.active a{

    color:#ffff00
}


.entry-content .navigation.post-navigation, .entry-content p, .entry-content ul

{
    float: left;
    display: block;
    width: 100%;
}


.nav-links .page-numbers, .post-navigation .nav-links a
{
margin: 10px;
background-color: #ECF0F2;
color: #000;
display: inline-block;
cursor: pointer;
border: 0;
padding: 20px;
}

.nav-links .page-numbers:hover  , .post-navigation .nav-links a:hover  {
    text-decoration: none;
    background-color: #fa9273;
}

.blog-excerpt .entry-title a
{
text-transform: uppercase;
color: #fa9273;
}
/*.post-navigation .nav-links a + a {
    float: right;
}
*/
.post-navigation .nav-links a .meta-nav
{
   padding: 20px;
background: #C5C5C5;
margin: 0px 10px;
margin-left: -20px;
    
}


.navigation.post-navigation{
    margin-bottom: 50px;
}


.entry-content li{
    line-height: 2.3em;
}

.works-strip-body {
    margin-bottom: 40px;
}

div.testimonial {
	padding-bottom:40px
}
.testimonials .feedback-box {
	background:#fff none repeat scroll 0 0;
	border-radius:4px;
	box-shadow:none;
	display:block;
	margin:13px;
	padding:25px;
	text-align:left;
	z-index:5
}
.feedback-box .message {
	color:#909090;
	font-size:15px
}
.feedback-box .client {
	height:73px;
	margin-top:30px;
	position:relative
}
.feedback-box .quote {
	float:left;
	font-size:45px;
	line-height:80px
}
.feedback-box .client-info {
	float:left;
	margin-left:18px;
	padding-top:15px
}
.feedback-box .client-info .client-name {
	color:#404040;
	padding-bottom:5px;
	font-weight:600
}
.feedback-box .client-info .client-company {
	font-size:13px;
	margin-top:-3px
}
.feedback-box .client-image {
	border:3px solid #f6f6f6;
	border-radius:50%;
	float:right;
	height:125px;
	overflow:hidden;
	width:125px
}

.testimonial {
    margin-top: 22px;
    position: relative;
}



/*************************************/
.widget.popup-widget.reveal {
    bottom: -12px;
    transition: .7s;
}
.widget.popup-widget {
    background: url(../images/man-on-phone-horizontal.jpg) center center no-repeat;
    background-size: cover;
    border: 0;
    bottom: -72px;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
    left: calc(50% - 290px);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    position: fixed;
    text-align: center;
    transition: .5s;
    width: 580px;
    z-index: 50;
}

.widget .widget-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: RGB(100, 40, 145);
    opacity: .74;
    z-index: -1;
}

.widget.popup-widget .close-icon {
    color: RGB(138, 218, 248);
    color: rgba(255,255,255,.54);
    cursor: pointer;
    font-size: 20px;
    padding: 11px;
    position: absolute;
    right: 0;
    top: 0;
}
.widget.popup-widget #emailButton2 {
    background: RGB(0, 175, 240);
    border: 0;
    color: rgb(255, 255, 255);
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    margin-bottom: 12px;
    margin-top: 6px;
    padding: 12px;
    width: 118px;
}

.widget.popup-widget .marked-title h3 {
    font-size: 16px;
    line-height: 24px;
    padding-top: 6px;
    color:#fff;
}

.widget.popup-widget .label--checkbox .checkbox-label-text {
    display: table-cell;
    vertical-align: top;
    font-size: 12px;
    line-height: 20px;
        color:#fff;
}
.widget.popup-widget .label--checkbox .checkbox-label-text a {
       color:#fff;
    font-weight: 600;
}
/* Modern popup widget styles */
.widget.popup-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 320px;
    max-width: calc(100vw - 2rem);
    background: linear-gradient(135deg, var(--primary-color, #0074D9), var(--secondary-color, #001f3f));
    color: white;
    border-radius: var(--border-radius, 4px);
    box-shadow: var(--shadow-medium, 0 4px 8px rgba(0, 0, 0, 0.15));
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-base, 0.3s ease);
}

.widget.popup-widget.show {
    transform: translateY(0);
}

.widget.popup-widget .close-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform var(--transition-base, 0.3s ease);
}

.widget.popup-widget .close-icon:hover {
    transform: scale(1.1);
}

.widget.popup-widget .widget-head {
    padding: 1.5rem 1.5rem 1rem;
}

.widget.popup-widget .widget-content {
    padding: 0 1.5rem 1.5rem;
}

.widget.popup-widget h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    line-height: 1.3;
}

.widget.popup-widget .label--checkbox {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 1rem;
}

.widget.popup-widget .checkbox-label-text a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive popup styles */
@media (max-width: 768px) {
    .widget.popup-widget {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .widget.popup-widget {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: var(--border-radius, 4px) var(--border-radius, 4px) 0 0;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

@media (max-width: 767px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
}

@media (min-width: 768px) {
    .d-md-none { display: block !important; }
    .d-md-block { display: none !important; }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .rainbow,
    .widget.popup-widget,
    .navbar-toggle {
        display: none !important;
    }
    
    a,
    a:visited {
        text-decoration: underline;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    p {
        orphans: 3;
        widows: 3;
    }
}