<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*/ 
  -----------------------  
  BOOTSTRAP CUSTOM CSS
  ----------------------
  	#
	#Global Styles
	#Header Styles
	#Banner Styles
	#Content Styles
	#Footer Styles
	#Media Queries
/*/


/* -= Global Styles =- 
========================================================*/
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus {outline:0 !important;}

/* Placeholder */
::-moz-placeholder{color:#333;opacity:1;}
:-ms-input-placeholder{color:#333;}
::-webkit-input-placeholder{color:#333;}
:focus::-webkit-input-placeholder {opacity:0.3;}
:focus::-moz-placeholder {opacity:0.3;}
:focus:-ms-input-placeholder {opacity:0.3;}

html {
	
}
body {
	font-size:18px;
	font-family:"Poppins", Arial, Helvetica, sans-serif;
	font-weight: 300;
	line-height:1.5;
	color:#777777;
	overflow-x:hidden;
	overflow-y:scroll;
}


/* Default Link Color 
-------------------------------------------*/
a {
	color:#b40016; 
	text-decoration:none;
	transition: all 0.5s ease;
}
a:hover, a:focus {
	color:#f5931e; 
	text-decoration:none;
}


/* Headings, Paragraph, image, hr 
---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	margin-top:0; 
	color: #222222;
	font-weight:bold;	
	line-height:1.2;
	margin-bottom:8px;
	font-family:"Poppins", Arial, Helvetica, sans-serif;
}
h1 {
	font-size:60px; 
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 25px;
}
h2 {
	font-size:35px;
	text-transform: uppercase;
}
h3 {font-size:30px;}
h4 {font-size:24px;}
h5 {font-size:20px;}
h6 {font-size:18px;}

p {margin:0 0 20px;}

img {
	max-width:100%;
	height:auto;
}

hr {
	border-color:#b40016;
    border-width: 2px;
}

h1 small,
h2 small {color: inherit; font-weight: inherit;}

strong {
	font-weight: 600;
}

/* List 
---------------------------------------------*/
ul {
    margin: 0;
    padding: 0 0 15px 25px;
}
ul li {
	line-height:1.1;
	margin-bottom:5px;
}

ol {
	padding: 0;
	margin: 0 0 15px;
	list-style: none;
	counter-reset: ol-reset;
	/*display: table;*/
}
ol li {
	position: relative;
	padding: 0 0 3px 30px;
    line-height:1.2;
}
ol li:before {
	content: counter(ol-reset)".";
	counter-increment: ol-reset;
	text-align: right;
	color: #f5931e;
	width:26px;
	font-weight: bold;
	position: absolute;
	/*left: 0;*/
    margin:2px 0 0 -28px;
    font-size:90%;
    
}


/* Form
---------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea, select,
.form-control {
	background: none;
	border:0;
	border-bottom: 1px solid rgba(165,167,170,1);
	color:rgba(165,167,170,1);
	height:40px;
	padding:5px 10px;
	font-size:14px;
	font-family:"Poppins", Arial, Helvetica, sans-serif;
	margin: 0 0 15px;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus, select:focus,
.form-control:focus {
	background: rgba(165,167,170,0.2);
	border-bottom: 2px solid rgba(165,167,170,1);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.form-control::-moz-placeholder{color:#333;opacity:1}
.form-control:-ms-input-placeholder{color:#333}
.form-control::-webkit-input-placeholder{color:#333}
.form-control:focus::-webkit-input-placeholder {opacity:0.3;}
.form-control:focus::-moz-placeholder {opacity:0.3;}
.form-control:focus:-ms-input-placeholder {opacity:0.3;}

.checkbox-inline, 
.radio-inline {
	line-height:normal;
	margin-bottom:15px;
	display:block;
}
.checkbox-inline label, 
.radio-inline label{
	font-weight:normal;
}
.checkbox-inline + .checkbox-inline, 
.radio-inline + .radio-inline {
	margin-left:0;
}

label {
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
}

select::-ms-expand {
    display: none;
}
textarea {
	resize: none;
}

/*
	Select HTML setup
	-----------------------------------	
	&lt;div class="selectbox"&gt;
	    &lt;select id="" name=""&gt;
	        &lt;option value=""&gt;SELECT&lt;/option&gt;
	    &lt;/select&gt;
	&lt;/div&gt;
*/
.selectbox {
	display: block;
	position: relative;
	margin: 0 0 15px;
	/*background:url(../images/bg-dropdown-select.png) no-repeat right center rgba(165,167,170,0.6);
	background-size: 24px auto;*/
	color:#fff;
	height: 32px;
	overflow: hidden;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
}
.selectbox:active,
.selectbox:focus {
	background-color: rgba(165,167,170,0.6);
}
.selectbox select {
	border: 0;
	padding: 0 25px 0 5px;
	background: none;
	width:100%;
	height: auto;
	margin:5px 0 0;
	box-shadow: none;
	-webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance: none;
}
.selectbox select:focus {
	box-shadow: none;
}


/*
	Checkbox HTML setup
	-----------------------------------	
	&lt;div class="checkbox"&gt;
    	&lt;input id="test" type="checkbox"&gt;
        &lt;label for="test"&gt;test&lt;/label&gt;
    &lt;/div&gt;
*/
.checkbox {
	line-height: 30px;
	margin: 6px 0 15px;
}
.checkbox input[type="checkbox"] {
	margin:0;
	opacity: 0;
}
.checkbox label {
	position: relative;
	padding-left: 30px;
	line-height: 1.2;
}
.checkbox label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin: -12px 0 0;
	width: 22px;
	height: 22px;
	border:2px solid #404041;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 20px;
	font-family:"Poppins", Arial, Helvetica, sans-serif;
}
.checkbox input[type="checkbox"]:checked + label:before {
	content: "\2713";
	color: #404041;
	border-color: #404041;
}


/*
	Radio HTML setup
	-----------------------------------	
	&lt;div class="radiobox"&gt;
    	&lt;input id="test" type="radio"&gt;
        &lt;label for="test"&gt;test&lt;/label&gt;
    &lt;/div&gt;
*/
.radiobox {
	line-height: 30px;
	margin: 6px 0 15px;
}
.radiobox input[type="radio"] {
	margin:0;
	opacity: 0;
	position: absolute;
}
.radiobox label {
	position: relative;
	padding-left: 30px;
	line-height: 1.2;
}
.radiobox label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin: -12px 0 0;
	width: 22px;
	height: 22px;
	border:2px solid #404041;
	font-size: 40px;
	text-align: center;
	line-height: 18px;
	font-family:"Poppins", Arial, Helvetica, sans-serif;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.radiobox input[type="radio"]:checked + label:before {
	content: "\2022";
	color: #404041;
	border-color: #404041;
}

.field {
	clear: both;
	margin-bottom: 15px;
}
.field .form-control {
	margin: 0;
}
.field label small, .fields label small {
	color: #a61d2d;
	font-size: 14px;
}
.fields {
	margin: 0 -10px;
}
.fields .half {
	float: left;
	width:50%;
	padding: 0 10px; 
}



/* Buttons 
-------------------------------------------*/
.gform_button,
.btn {
    min-width: 170px;
	padding: 15px 40px;
	font:bold 25px/1.2 "Poppins", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	transition: all 0.5s ease;
	box-shadow: 0 0 40px rgba(0,0,0,0.3);
}
.btn.btn-lg {
	font-size: 25px;
	padding: 25px 60px;
}

.btn-default {
	background: none;
	border: 2px solid #a61d2d;
	color: #a61d2d;
}
.btn-default:hover,
.btn-default:focus,
.btn-defaultfo:active  {
	background: #a61d2d;
	border-color: #fff;
	color: #fff;
}
.gform_button,
.btn-primary {
	background-color: #651422;
	background-image: url(../images/bg-button.png) !important;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border: 1px solid #a61d2d;
	color: #fff;
}
.gform_button:hover,
.gform_button:focus,
.gform_button:focus:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus:active  {
	background-color: #a80011;
	background-size: 210%;
	background-position: 100%;
	color: #fff;
	border: 1px solid #fff;
}
.gform_button{
	width:100%!important;
	margin:0px;
	font-size:25px!important;
}

/* gravity form */
.gform_wrapper{
	margin-top:0px!important;
}
body .gform_wrapper ul li.gfield{
	margin-top:0px!important;
}
.gform_wrapper div.validation_error{
	color:#fff!important;
	border-color:#fff!important;
}
.gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label{
	font-weight: 300!important;
	font-family: "Poppins"!important;
	font-size:14px!important;
}
body .gform_wrapper .top_label div.ginput_container,
.gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container), .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker):not(.gfield_signature_container){
	margin-top:0px!important;
}
.gform_wrapper textarea.medium{
	height:72px!important;
}
.gform_wrapper ul.gform_fields li.gfield{
	padding-right:0px!important;
}
.gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error{
	width:100%!important;
	max-width:100%!important;
}
.gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half, .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half,
.gform_wrapper .top_label li.gfield.gf_left_half, 
.gform_wrapper .top_label li.gfield.gf_right_half{
	width:calc(50% - 10px)!important;
}

.gform_wrapper .gfield_error .gfield_label,
.gform_wrapper .validation_message{
	color:#fff!important;
}
.gfield_required{
	color:#a61d2d!important;
}
.gform_wrapper .top_label li.gfield.gfield_error.gf_left_half{
	margin-right:0px!important;
}

.gform_wrapper .top_label li.gfield.gf_right_half{
	margin-left:20px!important;
}
#field_1_6{
	display: none!important;
}
#field_2_3,
#field_2_4,
#field_2_5,
#field_1_5,
#field_1_4,
#field_1_3{
	max-width: 100%!important;
}


.gform_wrapper .gform_footer{
	padding-top:0px!important;;
	margin-top:0px!important;
}


/* Utility Classes 
----------------------------------------------*/
.left {float:left;}
.right {float:right;}
img.left, a.left {margin:6px 15px 13px 0;}
img.right, a.right {margin:6px 0 13px 15px;}
.clear {clear:both;}
.fluid {width:100%;}
.radius  {
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}

.check-list {
	margin: 0; 
	padding: 0;
}
.check-list li {
	list-style: none;
	display: inline-block;
	padding: 7px 7px 7px 40px;
	background: url(../images/bg-check.png) no-repeat left top;
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 20px;
	text-align: left;
}
.check-list li small {
	font-weight: 300;
	font-size: 70%;
}
.check-list.two-cols &gt; li {
	width: 49%;
}




/* -= #Header Styles =- 
========================================================*/
#header {
	position: relative;
}
#logo {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 70px;
	z-index: 99;
	padding: 0 40px;
}

#hero {
	/*background: url(../images/hero-image.jpg) no-repeat center top / cover;*/
	background: url(../images/immigration-attorneys-banner.jpg) no-repeat center top / cover;
	padding: 230px 0 0;
}
.hero-cta {
	padding: 50px 0 0;
	text-transform: uppercase;
}
.hero-cta hgroup {
	text-shadow: 3px 3px 5px rgba(0,0,0,0.6);
}
.hero-cta h2 {
	font-size: 75px;
	color: #fff;
	line-height: 1;
	border-bottom: 4px solid #a61d2d;
	display: inline-block;
	padding: 0 10px 20px 0;
	margin: 0 0 20px;
}
.hero-cta h4 {
	font-size: 35px;
	color: #fff;
	margin: 0;
}
.hero-cta h6 {
	color: #fff;
	margin: 0;
	font-weight: 600;
}
.hero-cta h6 small {
	color: #ffb400;
	font-size: 14px;
	display: block;
	font-weight: 600;
	line-height: 1.2;
}

.hero-form {
	background: rgba(25, 33, 55,0.9);
	padding:30px;
	color: #cecece;
	margin: 0 0 -120px;
	position: relative;
	z-index: 2;
	font-size: 12px;
}
.hero-form h4 {
	color: #fff;
	text-transform: uppercase;
	font-size: 35px;
}
.hero-form strong {
	color: #fff;
}

.hero-bar {
	background: #671c25;
	position: relative;
	height: 120px;
	line-height: 120px;
	z-index: 1;
}
.hero-bar:before {
	content: "";
	background: #671c25;
	position: absolute;
	left: 50%;
	margin: 0 0 0 -50vw;
	width: 100vw;
	z-index: -1;
	top: 0;
	bottom: 0;
}
.hero-bar ul {
	margin: 0;
	padding: 0;
}
.hero-bar ul li {
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	margin:0 40px 0 0;
}
.cta-links a {
	display: inline-block;
	padding: 5px 30px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.cta-links .learn-more {
	font-weight: bold;
}
.cta-links .learn-more span {
	color: #b40016;
	margin-left: 5px;	
}
.phone-number .fa-phone {
	transform: rotate(90deg);
}


/* -= #Content Styles =- 
======================================================*/
.grecaptcha-badge{display:none;}
#content {
	background: #fff;
}

.intro-content {
	background: #e3e6ed url(../images/us-flag.jpg) no-repeat right bottom / auto 80%;
	position: relative;
	padding: 120px 0 110px;
}
.intro-content strong {
	color: #222;
}
.intro-content h1 {
	text-transform: none;
	color: #1e2f62;
}
.intro-content h1 small {
	font-size: 30px;
	display: block;
}
.intro-content h1 span {
	color: #b40016;
}
.intro-content h3 {
	font-size: 28px;
	margin-bottom: 15px;
}
.intro-content strong em {
	color: #ffb400;
	font-style: normal;
}
.intro-content .check-list {
	text-align: center;
	margin-left: -25px;
}
.intro-content .check-list li {
	padding-right: 40px;
	margin-bottom: 28px;
	color: #222;
}
.intro-content .get-started {
	position: absolute;
	left: 50%;
	bottom: -40px;
	transform: translate(-50%, 0);
}


.cases-we-handle {
	padding: 90px 0 75px;
}
.cases-we-handle h2 {
	text-align: center;
	margin-bottom: 40px;
}
.cases-we-handle h2 span {
	color: #b40016;
}
.case-item {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}
.case-item figure {
	border:1px solid #b40016;
	padding: 8px;
	margin-bottom: 20px;
}
.case-item figure img {
	width: 100%;
}
.case-item h4 {
	text-transform: uppercase;
	color: #b40016;
}
.case-item h4 span {
	color: #222;
}


.our-attorneys {
	background: #191b2b;
	color: #cecece;
	padding: 80px 0 0;
	text-align: center;
	border-bottom: 10px solid #b40016;
}
.our-attorneys strong {
	color: #f8f8f8;
}
.our-attorneys h2 {
	color: #fff;
}
.our-attorneys h2 span {
	color: #b40016;
}
.our-attorneys article {
	width: 1170px;
	margin: 0 auto 125px;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}
.our-attorneys article p {
	width: 970px;
	max-width: 100%;
	margin: 0 auto;
}


.our-awards {
	padding: 35px 0;
}
.our-awards ul {
	margin: 0;
	padding: 0;
	text-align: center;
}
.our-awards ul li {
	list-style: none;
	display: inline-block;
	padding: 0 30px;
	line-height: 98px;
}
.our-awards ul li img {
	display: inline-block;
}

.custom-modules {
	background: url(../images/bg-custom-modules.jpg) no-repeat center top / cover;
	color: #fff;
	padding: 90px 0 0;
}

.clients-say {
	position: relative;
	text-align: center;
	width: 1000px;
	max-width: 100%;
	margin: 0 auto 90px;
}
.clients-say h2 {
	color: #fff;
	margin-bottom: 30px;
}
.testimonial-item {
	text-align: center;
}
.testimonial-item figure img {
	display: inline-block;
}
.testimonial-item blockquote {
	border:0;
	width: 720px;
	margin: 0 auto;
	max-width: 100%;
	font-size: 26px;
	font-style: italic;
}
.testimonial-item blockquote cite {
	font-style: normal;
	font-size: 16px;
	font-weight: 600;
	color: #cecece;
}
.testimonial-item blockquote cite:before {
	content: "- ";
}

.why-alcock {
	margin-bottom: 180px;
}
.why-alcock h2 {
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.why-alcock h3,
.why-alcock h2 small {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}
.why-alcock h3{text-align: center;text-transform: uppercase;margin-top:30px}
.why-alcock .m-badge{display: block; margin:20px auto 0;}
.why-alcock .check-list {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
}
.why-alcock .check-list li {
	width: 49%;
	vertical-align: top;
}

.owner-quote blockquote {
	border:0;
	background: url(../images/bg-quote.png) no-repeat left top;
	padding: 35px 0 0 75px;
}
.owner-quote blockquote h3 {
	font-size: 78px;
	font-style: italic;
	color: #fff;
	font-weight: 600;
}
.owner-quote blockquote h3 span {
	display: block;
	text-align: right;
}
.owner-quote blockquote p {
	text-align: right;
	font-size: 16px;
}
.owner-quote blockquote cite {
	font-size: 25px;
	font-weight: 500;
	font-style: normal;
	margin: 0 0 15px 130px;
	text-align: right;
	overflow: hidden;
	display: block;
	white-space: nowrap;
}
.owner-quote blockquote cite span {
	float: right;
	margin: 0 0 0 5px;
}


.our-victories {
	position: relative;
	background: url(../images/bg-case-victories.jpg) no-repeat center top / cover;
	padding: 130px 0 180px;
	color: #fff;
	border-bottom: 8px solid #b10116;
}
.our-victories h2 {
	color: #fff;
}
.our-victories h2 small {
	display: block;
	font-size: 35px;
	font-weight: 300;
}
.our-victories h2 span {
	display: block;
	font-size: 80px;
	line-height: 1;
}
.our-victories .btn-viewall {
	position: absolute;
	left: 50%;
	bottom: -40px;
	transform: translate(-50%, 0);
}
.case-list {
	margin: 0;
	padding: 0;
}
.case-list li {
	font-size: 16px;
	margin: 0 0 20px;
	list-style: none;
}
.case-list .date {
	display: block;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}
.case-list .title {
	display: inline-block;
	background: url(../images/bg-won-residency.png) no-repeat right top;
	padding: 3px 180px 3px 0;
}

.pad-top-bottom {
	padding-top: 50px;
	padding-bottom: 50px;
}

.all-our-victories{padding:131px 0 0;clear:both;}
.all-our-victories .subtitle{font-weight:bold;display:block;text-transform:uppercase;font-family:"Poppins", Arial, Helvetica, sans-serif;text-align: center;}
.all-our-victories .subtitle strong{color:#a61d2d}
.all-our-victories h3{text-align:center;margin-bottom: 15px;}
.all-our-victories .ticker{overflow: hidden;height:400px;position: relative;width:100%; padding: 0 15px;}
.all-our-victories .ticker table{position: absolute;top:0px;left:0px}
.all-our-victories .ticker table tr td{color:#555;padding:8px;font-size:16px}
.all-our-victories .ticker table tr:nth-child(2n){background:#f1f1f1}

/* -= #Footer Styles =- 
======================================================*/
#footer {
	background: #0f0f1a;
	color: #777777;
	padding: 160px 0 30px;
	font-size: 14px;
}
.footer-logo img {
	width: 170px;
	margin-bottom: 20px;
}
.footer-logo h2 {
	color: #fff;
	font-size: 60px;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 20px;
}
.footer-logo h2 small {
	display: block;
	font-size: 18px;
}
.footer-ratings {
	margin-bottom: 50px;
}
.footer-ratings ul {
	margin: 0 -15px;
}
.footer-ratings ul li {
	margin:10px 10px;
}
.footer-form {
	background: #0f0f1a;
	padding:0 30px;
	color: #fff;
	position: relative;
	font-size: 12px;
}
.footer-form form {
	padding: 10px 0 0;
}

.footer-info {
	font-size: 14px;
	color: #777777;
}
.footer-info address {
	margin-bottom: 30px;
	line-height: 1.7;
}
.footer-info .phone-number {
	color: #fff;
	font-weight: 500;
}
.footer-info .phone-number .fa-phone {
	color: #b40016;	
}
.footer-info .phone-number:hover {
	color: #b40016;
}
.footer-info .social-media {
	float: right;
	width: 370px;
	max-width: 100%;
}
.social-media h6 {
	display: inline-block;
	font-size: 12px;
	color: #777;
	font-weight: 300;
	vertical-align: middle;
	margin: 0;
	text-transform: uppercase;
}
.social-media ul {
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0;
}
.social-media ul li {
	margin: 0;
}
.social-media a {
	color: #fff;
	font-size: 20px;
}

.copyright {
	padding: 20px 0 0;
}
.copyright a {
	color: #777;
}
.copyright a:hover {
	color: #fff;
}
.copyright span {
	display: inline-block; 
	line-height: 1; 
	border-left:1px solid; 
	padding: 0 0 0 10px; 
	margin: 0 0 0 10px;
}


/* Modal  */
.modal-backdrop {
	background: url(../images/bg-modal.png) repeat left top;
	opacity: 1 !important;
}

#modal-cases .modal-head {
	position: relative;
	font-size: 50px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	padding: 0 100px;
	margin: 20px 0;
	text-transform: uppercase;
}
#modal-cases .modal-head:before {
	content: "";
	background: url(../images/img-justice.png) no-repeat left top;
	position: absolute;
	width: 291px;
	height: 221px;
	left: -100px;
	top: -50px;
	z-index: -1;

}
#modal-cases .modal-content {
	border:0;
	border-bottom: 10px solid #b40016;
	border-radius: 0;
	padding: 20px;
	max-height: 70vh;
	overflow: auto;
}
#modal-cases ul li {
	border-bottom: 1px solid #dddddd;
	margin: 0;
	padding: 18px 15px;
}
#modal-cases .btn-close {
	float: right;
	color: #fff;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 14px;
	display: inline-block;
	padding: 10px 5px;
	font-weight: 600;
}
#modal-cases .modal-dialog {
	width: 760px;
	padding: 0 15px;
	max-width: 100%;
	margin: 0 0 50px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.case-list2 {
	margin: 0;
	padding: 0;
}
.case-list2 li {
	font-size: 16px;
	margin: 0 0 20px;
	list-style: none;
	color: #222222;
}
.case-list2 .date {
	display: block;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}
.case-list2 .title {
	display: block;
	background: url(../images/bg-dismissed2.png) no-repeat left bottom;
	padding: 3px 0 28px 0;
}


/*Changes */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea, select,
.form-control {
	background: rgba(255,255,255,0.9);
	color: #333;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus, select:focus,
.form-control:focus {
	background: rgba(255,255,255,0.9);
}

.cta-links a {
	font-size: 32px;
}
#sticky {
	position: absolute;
	left: 0;
	right: 0;
	visibility: hidden;
	background: #671c25;
	padding: 10px 0;
	z-index: 9999;
	margin-top: -100px;
}
#sticky.on {
	position: fixed;
	top: 0;
	visibility: visible;
	margin-top: 0;
	transition: all 0.3s ease;
}
#sticky a {
	transition: none;
}
#sticky .sticky-logo {
	float: left;
	width: 160px;
}
#sticky .sticky-phone {
	float: right;
}
#sticky .sticky-phone a {
	font-size: 18px;
	padding: 8px 25px;
	border: 1px solid #fff;
}
#sticky .sticky-phone .fa-phone {
	transform: rotate(90deg);
}



/* -= #Media Queries =- 
======================================================*/

/* Large desktop */
@media (min-width: 1200px) {
	.container {padding-left: 0; padding-right: 0;}
}


/* Landscape tablet */
@media (min-width: 992px) and (max-width: 1199px) {
	body {font-size: 16px}

	.hero-cta h2 {font-size: 65px;}
	.hero-cta h4 {font-size: 30px;}
	.hero-cta h6 {font-size: 16px;}
	.hero-bar ul li {margin-right: 20px;}
	.hero-bar ul li img {max-height: 45px;}
	.hero-form h4 {font-size: 28px;}

    .intro-content {background-size: auto 65%;}
	.intro-content h1 {font-size: 50px;}
	.intro-content h3 {font-size: 25px;}
	.intro-content .check-list {margin-left: 0;}
	.intro-content .check-list li {padding-right: 20px;}
	
	.what-to-expect article {padding: 90px 0 0;}
	.what-to-expect h2 {font-size: 30px;}

	.case-item h4 {font-size: 20px;}
	.case-list li {font-size: 15px;}

	.owner-quote blockquote h3 {font-size: 58px;}
	.owner-quote blockquote p {font-size: 15px;}

	.our-victories {padding: 90px 0;}

	.footer-logo h2 {font-size: 50px;}
	.footer-ratings ul li img {max-height: 40px;}

    .cta-links a {font-size: 26px;}

}
 
/* Portrait tablet */
@media (max-width: 991px) {
	#hero {position: relative;}
	#hero:before {content: ""; position: absolute; left: 0; top:0; right: 0; bottom: 0; background: rgba(20,30,50,0.7);}
	.hero-cta {text-align: center; padding: 0;}
	.hero-form {padding: 30px 0; margin:0; background: none;}
	.hero-bar ul li {margin: 0 20px;}

	.intro-content {background-size: auto 320px; padding-bottom: 270px;}	
	
	.what-to-expect {font-size: 13px;}
	.what-to-expect article {padding: 20px 0 0;}
	.what-to-expect h2 {font-size: 30px;}

	.case-item h4 {font-size: 20px;}

	.owner-quote blockquote h3 {font-size: 58px;}
	.owner-quote blockquote p {font-size: 15px;}
	.owner-quote figure {text-align: center;}
	
	.our-victories {background: none; padding: 0; border-bottom: 10px solid #b40016}
	.our-victories h2 {position: relative; padding: 20px 0; margin: 0; z-index: 1;}
	.our-victories h2:before {content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; margin: 0 -50vw; top: 0; bottom: 0; background: url(../images/bg-case-victories-head.jpg) no-repeat right center / cover;}
	.our-victories .case-list {position: relative;z-index: 1; padding: 80px 0 110px;}
	.our-victories .case-list:before {content: ""; position: absolute; z-index: -1; left: 50%; right: 50%; margin: 0 -50vw; top: 0; bottom: 0; background: url(../images/bg-case-victories-body.jpg) no-repeat center / cover;}
	.our-victories .btn-viewall {z-index: 1;}

	#footer {padding: 110px 0 30px;}
	.footer-logo h2 {font-size: 35px;}
	.footer-form {padding: 0 0 50px;}
	.footer-ratings {margin-bottom: 0;}
	.footer-info address {margin-bottom: 20px;}
	.footer-info .social-media {margin-top: 10px;}
	.copyright {text-align: center;}

}
 
 
/* Landscape phone */
@media (max-width: 767px) {	
	.container {padding-left: 30px; padding-right: 30px;}

	.btn {font-size: 16px; padding:15px 25px;}
	.btn.btn-lg {font-size: 18px; padding:20px 30px;}

	#logo {top: 40px;}
	#logo img {width: 280px;}

	#hero {padding: 170px 0 0;}
	.hero-bar {height: auto; line-height: normal; padding: 15px 0; text-align: center;}
	.hero-bar ul li {display: block; margin: 30px 0;}
	.hero-cta h2 {font-size: 68px;}

	.intro-content {padding: 45px 0 270px;}
	.intro-content h1 {font-size: 45px;}
	.intro-content h1 small {font-size: 20px;}
	.intro-content h3 {font-size: 24px;}
	.intro-content .get-started {bottom: -30px;}

	.cases-we-handle {padding: 70px 0 30px; border-bottom: 15px solid #b40016;}
	
	.our-attorneys {padding: 45px 0 0;}
	.our-attorneys article {padding-left: 30px; padding-right: 30px; margin-bottom: 30px;}

	.our-awards {padding: 25px 0;}

	.custom-modules {padding: 45px 0 0;}
	.clients-say {margin-bottom: 50px;}
	.why-alcock {margin-bottom: 120px;}
	.our-victories .case-list {padding: 80px 40px 90px; margin: 0 -10px;}
	.case-list .title {display: block; background-position: left bottom; padding: 3px 0 30px 0;}
	.case-list .slick-arrow {top: 42%;}
	
	#footer {padding-top: 60px;}
	.footer-logo {text-align: center;}
	.footer-logo h2 {text-align: left;}
	.footer-form {padding: 0 0 20px;}
	.footer-ratings ul li {display: block; text-align: center; margin: 25px 0;}
	.footer-info .social-media {float: none; width: auto; margin-top: 15px;}
	.copyright span {border:0; margin: 0; padding: 0;}

	#modal-cases .modal-head {font-size: 30px; padding: 0 20px;}
}
 
@media (max-width: 640px) {

	h2 {font-size:28px;}
	h3 {font-size:24px;}
	h4 {font-size:20px;}
	h5 {font-size:18px;}
	h6 {font-size:16px;}

	.col-xs-block {float: none; width: auto;}

	.hero-cta h6 {font-size: 16px;}
	.hero-cta h4 {font-size: 28px;}
	.hero-cta h2 {font-size: 50px;}

	.intro-content h1 {font-size: 35px;}
	.intro-content h3 {font-size: 18px;}
	.intro-content .check-list {margin: 0;}
	.intro-content .check-list li {display: block; margin-bottom: 12px;}

	.testimonial-item blockquote {font-size: 16px;}
	.why-alcock .check-list li {width: auto; display: block;}

		.gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half, .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half, .gform_wrapper .top_label li.gfield.gf_left_half, .gform_wrapper .top_label li.gfield.gf_right_half{
		width:100%!important;
	}
	.gform_wrapper .top_label li.gfield.gf_right_half{
		margin-left:0px!important;
	}

}

/* Portrait phone*/
@media (max-width: 479px) {
	.col-xxs-block {float: none; width: auto;}
	.btn {font-size: 14px; padding: 12px 20px;}
	.btn.btn-lg {font-size: 14px; padding: 15px 25px;}

	#logo {top: 25px;}
	#logo img {width: 215px;}
	
	#hero {padding: 130px 0 0;}
	.hero-cta h6 {font-size: 13px;}
	.hero-cta h4 {font-size: 22px;}
	.hero-cta h2 {font-size: 40px; padding: 0 6px 10px;}
	.hero-form h4 {font-size: 28px;}
	.cta-links a {padding: 5px 25px;}

	.owner-quote blockquote {background-size: 50px; padding: 0;}
	.owner-quote blockquote h3 {font-size: 34px;  padding: 20px 0 0 25px;}
	.owner-quote blockquote cite {font-size: 18px; margin: 0 0 15px;}
	.owner-quote blockquote cite hr {margin-top: 14px; margin-bottom: 14px;}

	.our-victories h2 {font-size: 20px;}
	.our-victories h2 span {font-size: 40px;}
	.our-victories h2 small {font-size: 20px;}
	.our-victories .btn-viewall {bottom: -28px;}
	.our-victories .btn-viewall .btn {font-size: 14px; padding: 15px 25px;}
	
	#sticky .sticky-logo {width: 130px; margin-top: 3px;}
	#sticky .sticky-phone a {padding:8px 10px; min-width: 10px;}
}

@media (max-width: 399px) {
	.container {padding-left: 15px; padding-right: 15px;}
	#sticky .sticky-phone a {font-size: 16px;}
}
@media screen and (max-width:639px){
    .all-our-victories .ticker{/* overflow: visible;height:auto;width:100%; */overflow-x: hidden; overflow-y: auto;}
	.all-our-victories .ticker table{position: static;}
	.all-our-victories .subtitle{font-size:14px}
	.all-our-victories h3{font-size:18px}
	
}

/* Print */
@media print {}


</pre></body></html>