

/* FONTS */
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 100;
  src: url("/fonts/inter/Inter-Thin.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 200;
  src: url("/fonts/inter/Inter-ExtraLight.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/inter/Inter-Light.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/inter/Inter-Regular.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/inter/Inter-Medium.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/inter/Inter-SemiBold.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/inter/Inter-Bold.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/inter/Inter-ExtraBold.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'inter';
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/inter/Inter-Black.ttf") format('truetype');
  font-display: swap;
}

/* END FONTS */
* {
  font-family: 'inter';
}
h1,h2,h3,h4,h5 h6 {
    color: #24211A;
    /* background: -webkit-linear-gradient(#eee, #333); */
    background: rgb(41,41,41);
    background: -webkit-linear-gradient(90deg, rgba(41,41,41,1) 0%, rgba(102,102,102,1) 46%, rgba(40,40,40,1) 100%);
    background: linear-gradient(90deg, rgba(41,41,41,1) 0%, rgba(102,102,102,1) 46%, rgba(40,40,40,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    font-family: 'inter', 'Montserrat', sans-serif;
    font-style: normal;
    line-height: 1.5;
	
    font-size: 16px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, p {
    color: #1E222B;
}
.simple-btn:hover {
    background-color: transparent;
    border: 3px solid #E0C56E;  
    color: #444; 
}



/* General Section */
.section {
    padding: 50px 0px 30px;
    background: #FFF;
} 
.section .section__title {
    /* color: #555; */
    margin: -45px 0px 10px;
    font-weight: 500;
    font-size: 38px;
    padding: 30px 5px;
}

/* .section .section__title:after{
    content: "";
    display: block;
    width: 150px;
    height: 3px;
    background-color: #555;
    margin: auto;
} */

.section .section__paragraph {
    width: 800px;
    text-align: justify;
    margin: auto auto 40px;
}
@media (max-width: 767px) {
    .section .section__paragraph {
        width: 100%;
        font-size: 15px;
        text-align: justify;
        margin: auto auto 40px;
    }
}

.section__buttons {
    display: flex;
    justify-content: space-between;
    width: 420px;
    margin: auto;
    text-align: center;
}

@media (max-width: 767px) {
    .section__buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: auto;
        text-align: center;
    }
    .section__buttons > * + * {
        margin-top: 20px;
    }
}

.section .reduce-box {
    margin-bottom: 20px;
}
.section .reduce-box  img{
    border: 4px solid #FCE586;
    margin-bottom: 10px;
}

.section .reduce-box .text {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 400;
}
.section .reduce-box .text::after{
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #E0C56E;
    margin: 5px auto; 
    transition: .5s ease-in-out;
}
.section .reduce-box .text:hover::after {
    width: 150px;
}

.section__buttons__gradient {
    background: linear-gradient(91.88deg, #E0C56E 0%, #FFF0BF 56.25%, #E0C56E 100%);
    display: inline-block;
    width: 200px;
    /* height: 45px; */
    padding: 10px;
    line-height: 25px;
    text-align: center;
    border-radius: 10px;
    position: relative; 
    border: 1px solid #E0C56E; /* line */
    /* border-width: 3px;
    border-image: linear-gradient(91.88deg, #E0C56E 0%, #FFE388 56.25%, #E0C56E 100%); */
    color: #1E222B;
    font-weight: bold;
    transition: all 0.4s ease-in-out; 
}

.section__buttons__gradient:hover {
    background: transparent;
    border: 1px solid #E0C56E;   /* line */
    color: #444; 
}

.section__buttons__white {
    /* background: #fff; */
    display: inline-block;
    width: 200px;
    padding: 10px;
    line-height: 25px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #24211A; /* line */
    position: relative; 
    font-weight: 400;
    transition: all 0.4s ease-in-out; 
    background: rgb(41,41,41);
    background: -webkit-linear-gradient(90deg, rgba(41,41,41,1) 0%, rgba(102,102,102,1) 46%, rgba(40,40,40,1) 100%);
    background: linear-gradient(90deg, rgba(41,41,41,1) 0%, rgba(102,102,102,1) 46%, rgba(40,40,40,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.section__link {
    position: relative;
}

.section__link * + * {
    margin-left: 3px;
}

.section__link i {
    position: absolute;
    top: 4px;
    right: -20px;
}

.section__article {
    margin-top: 80px;
    padding-bottom: 16px;
    border-bottom: 1px solid #838383;
}

.section__row {
    margin-top: 80px;
}

/* End General Section */

/* Start readuce Taxes  */
.readuce-taxes{
    padding: 20px 0px 30px;
}	
.newsletter-form {
    width: 100%;
}
.newsletter-form input {
	height: 40px;
}

.tax-main-section .sidebar {
    /* margin-left: -55px; */
}
.blog-header {
  display: flex;
  align-items: center;
  height: 100%;
}

.blog-header .read-more {
  display: block;
  margin-bottom: 15px;
}

.articles-item {
  margin-bottom: 30px;
}

.articles-item .read-more {
  display: block;
  margin-top: 15px;
}


.blog h1 {
  font-size: 24px;
  width: 100%;
  line-height: 24px;
  font-weight: 500;
  display: inline-block;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-bottom: 10px;
}

.blog h2 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 24px;
  display: inline-block;
  box-sizing: border-box;
  /* white-space: pre-line; */
  word-wrap: break-word;
  height: 48px;
}
.blog h2 > span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog p {
  color: #1E222B;
  line-height: 24px;
  letter-spacing: 1.1px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'inter', 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
  box-sizing: border-box;
  white-space: pre-line;
  word-wrap: break-word;
  max-height: 141px;
  overflow: hidden;
}

.blog p > span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.blog .section__link i {
  position: relative;
  top: 0px;
  
}
.blog .aspect_img{
  width:100%;
  aspect-ratio: 1.4;
}

.blog .aspect_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.gray-block {
  background: #FDFDFC;
  border: 1px solid #F2F2F2;
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
}

.gray-block .aspect_img img {
  border-radius: 8px;
  aspect-ratio: 1.6;
}

.gray-block-content {
  padding: 10px 2px;
  margin-bottom: 10px;
}

.gray-block-content h2 {
  height: 45px;
}

.gray-block-content h2 span{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.gray-block-content p {
  height: 72px;
}

.gray-block-content p span{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* @media (max-width: 600px){
  .ec-user-section {
    margin-right: 70px;
}
}

@media (max-width: 600px){
.main-nav {
  position: absolute;
  right: 20px;
  top: 30px;
}
.navbar-toggler{
  font-size:12px
}
} */
/** AMINE **/

.tax-footer-one {
  background-color: white;
  padding:30px 0 0
}

.ec-user-section li>a {
  border-radius: 8px;
  border-color: #374151;
  color: #374151;
}
.btn {
  border-radius: 8px;
  border: 1px solid #374151;
  color: #374151;
}

.btn-md {
  min-width: 200px;
  font-weight: 400;
  padding: 10px 30px;
  line-height: 25px;
}

.golden-btn {
  background: linear-gradient(90deg, #E3C976 0%, #F6E5AF 49.13%, #E3C976 100%), linear-gradient(0deg, #E0C56E, #E0C56E);
  border: 1px solid #E0C56E !important; /* line */
  border-radius: 8px;
  color: #24211A;
}

.new-badge {
  padding: 0px 8px;
  font-size: 12px;
  font-weight: 600;
  margin: 8px;
  margin-right: 28px;
  border-radius: 12px;
}

a {
  text-decoration: none !important;
}

.news-col {
  margin-bottom: 10px;
}

.news-item-title {
  margin: 10px 0;
  height: 45px;
}

.news-item-title span{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-col .read-more {
  margin-top: 5px;
  display: inline-block;
}

.news-col img.news-item-image {
  overflow: hidden;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.news-col-1 {
  margin-bottom: 21px;
}

.news-col-1 img {
  width: 122px;
  height: 122px;
  object-fit: cover;
  margin-right: 8px;
}

.news-col-1 .news-item-title {
  margin-top: 0;
}

.news-col-2 img {
  width: 100%;
  height: 180px;
}

.news-col-3 img {
  width: 100%;
  height: 200px;
}
/* END AMINE */

/* FOOTER */

.our-footer {
	padding-bottom: 34px;
}
.our-footer .our-footer-pragh {
	color: #000;
	margin: 18px auto 20px;
	text-align: justify;
}
.our-footer .our-footer-title {
	color: #000;
  font-weight: bold;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 15px;
}
/* .our-footer .our-footer-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background-color: #e0c56e;
} */
.our-footer .our-footer-likns ul {
	padding: 0;
  margin-top: 15px;
}
.our-footer .our-footer-likns ul li {
	list-style: none;
	color: #000;
	font-size: 15px;
	padding: 5px 0 2px;
}
.our-footer .our-footer-likns ul li i {
	color: #e0c56e;
}
.our-footer .our-footer-likns ul li a {
	color: #000;
}
.our-footer .our-footer-contact ul {
  padding: 0;
	margin-top: 15px;
}
.our-footer .our-footer-contact ul li {
	list-style: none;
	color: #000;
	font-size: 15px;
	padding: 5px 5px 2px;
}
.our-footer .our-footer-contact ul li i {
	color: #e0c56e;
	margin: 0 5px 0;
	font-size: 20px;
}

.uptoTop {
  text-align: center;
  display: block;
  width: 50px;
  height: 50px;
  margin: 70px auto 60px;
  cursor:pointer;
}

.uptoTop::before {
  content: '';
  width: 50px;
  height: 50px;
  background-image: url("/images/icons/go-up.png");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  display: inline-block;
}

.our-footer .our-footer-contact .footer-phone::before {
	  content: '';
    width: 20px;
    height: 20px;
    background-image: url("/images/icons/phone-outline.png");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    background-position-y: 1px;
}
.our-footer .our-footer-contact .footer-email::before {
	  content: '';
    width: 20px;
    height: 20px;
    background-image: url("/images/icons/mail-outline.png");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    background-position-y: 1px;
}
.our-footer .our-footer-contact .footer-address::before {
	  content: '';
    width: 20px;
    height: 20px;
    background-image: url("/images/icons/location-marker-outline.png");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    background-position-y: 1px;
}

.our-footer .our-footer-contact ul li a {
	color: #000;
}

.newsletter-container .our-footer-info .our-footer-subtitle {
	display: block;
	font-size: 16px;
	margin: 35px 0 35px;
}

.newsletter-container .our-footer-info .our-footer-title {
  font-weight: bold;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 15px;
}

.our-footer-info form {
	margin-top: 20px;
	margin-bottom: 20px;
}
.our-footer-info form input[type="text"] {
	background-color: transparent;
  border-radius: 8px 0 0 8px;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
	width: 70%;
	padding: 10px;
}
.our-footer-info form input[placeholder] {
  color: #000;
	font-size: 12px;
}
.our-footer-info form input[placeholder]:focus{
    outline: none;
}
.our-footer-info form input[type="submit"] {
	background-color: #000;
	color: #fff;
  width: 30%;
  font-weight: bold;
}

.our-footer-info form button[type="submit"] {
	background-color: #000;
	color: #fff;
  width: 30%;
  font-weight: bold;
}

.newsletter-container {
  padding-top: 60px;
  padding-bottom: 60px;
  background: rgb(158,158,160);
background: linear-gradient(130deg, rgba(158,158,160,1) 0%, rgba(209,209,211,1) 30%, rgba(239,239,241,1) 50%, rgba(209,209,211,1) 70%, rgba(158,158,160,1) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.newsletter {
	float: left;
	width: 100%;
	position: relative;
	background-color: #dda520;
	padding: 11px 0 9px;
}
.newsletter-transparent {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
	height: 100%;
	background-image: url(/images/transparent-pattren.png);
}
.newsletter span {
	color: #fff;
	margin: 0;
	display: block;
	line-height: 1.4;
	font-size: 30px;
	font-weight: 700;
	text-align: right;
	font-family: 'inter', "Montserrat", sans-serif;
}
.newsletter-form {
	/* float: left;
	width: 70%;
	position: relative; */
}
.newsletter-form input[type="email"] {
	border-color: #eaeaea;
}

.newsletter-form input[type="submit"] {
	height: 40px;
	border-radius: 0 8px 8px 0;
	padding: 0 25px;
	border: none;
	background-color: #eaeaea;
	color: #000;
}

.newsletter-form button[type="submit"] {
	height: 40px;
	border-radius: 0 8px 8px 0;
	padding: 0 25px;
	border: none;
	background-color: #eaeaea;
	color: #000;
}

.newsletter-form-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 14px;
}

.newsletter-form-content label.error{
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: left;
  font-size: 13px;
  padding-left: 20px;
  position: absolute;
}

/* END FOOTER */

/* MEGA MENU */
.navbar-nav > li > a {
	font-size: 15px;
	position: relative;
	letter-spacing: 1px;
	color: #5E5E5E;
	float: left;
	font-weight: 400;
	transition: all 0.4s ease-in-out;
}
.navbar-nav > li:hover > a {
	color: #000;
}

.nav-mega-menu {
	margin: 0 0 0;
	opacity: 1;
	visibility: visible;
}
.nav-mega-menu {
	position: absolute;
	left: 0;
	visibility: hidden;
	opacity: 0;
	top: 100%;
	margin: 35px 0 0;
	padding: 10px 0 0;
	width: 70%;
  left: 14%;
	background-color: #fff;
	z-index: 9999;
	box-shadow: 0 9px 10px rgba(0, 0, 0, 0.2);
	border-bottom: none;
	transition: all 0.5s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}
.mega-menu-btn {
	display: inline-block;
	width: 87%;
	background-color: #fdfdfd;
	border: 1px solid #fdfdfd; /* line */
	padding: 5px 0;
	font-size: 16px;
	text-align: center;
	border-radius: 3px;
	position: relative;
	margin: 0 0 0;
	transition: all 0.4s ease-in-out;
}
.mega-menu-btn:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 0.4s ease-in-out;
	border-bottom: 15px solid #555;
	border-left: 15px solid transparent;
}
.mega-menu-btn:hover:before {
	border-bottom-color: #fdfdfd;
}
.mega-menu-btn:hover {
	background-color: transparent;
	color: #fdfdfd;
}
.nav-mega {
	float: left;
	width: 100%;
	padding: 0 0;
	margin: 0 0 20px;
}
.nav-mega ul {
	margin: 0;
  padding: 0;
}
.nav-mega ul li {
	list-style: none;
	font-size: 13px;
	margin: 0 0 0;
	position: relative;
}
.nav-mega ul li h3 {
	font-size: 13px;
	margin: 0;
	letter-spacing: 0;
	line-height: 25px;
	font-family: 'inter', "Open Sans", sans-serif;
}
.nav-mega ul li a {
	display: block;
	position: relative;
	color: #5E5E5E;
	transition: all 0.4s ease-in-out;
	padding-left: 35px;
}
.nav-mega ul li a:hover {
	padding-left: 37px;
  color: #000;
}
/* .nav-mega ul li a:before {
	content: "\f105";
	position: absolute;
	left: 10px;
	font-family: FontAwesome;
	top: 0;
	font-size: 15px;
} */
.nav-mega h2 i {
	position: absolute;
	left: 0;
	top: 50%;
	border: 1px solid;
	font-size: 14px;
	border-radius: 100%;
	text-align: center;
	padding: 0 0 0 1px;
	width: 30px;
	margin: -24px 0 0;
	height: 30px;
	line-height: 29px;
}
.nav-mega h5 {
	margin: 0 0 20px;
	color: #fff;
}
.nav-mega h2 {
	margin: 0;
	font-weight: 400;
	font-size: 15px;
	position: relative;
	padding-left: 35px;
  padding-bottom: 5px;
}
.nav-mega h2 a {
	color: #24211A;  
}
.nav-mega h3 a {
	color: #5E5E5E;
  font-weight: 400;
}
.nav-online-tax-return-block {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("/images/newsletter-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 80px;
  width: 100%;
}
.nav-online-tax-return-block .main-link {
  display: block;
}
.nav-online-tax-return-block .main-link p {
  color: #24211A;
}

.temp-modal .modal-header {
  padding: 0.5rem 0.5rem;
  border: none;
}

.temp-modal .modal-header {
  padding: 0.5rem 0.5rem;
  border: none;
}

.temp-modal .modal-body {
  padding-top: 0;
}

.temp-modal .modal-body h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.temp-modal .modal-body p {
  margin-bottom: 35px;
}

.temp-modal .modal-header .close {
  padding: 15px;
  font-size: 18px;
}

.temp-modal .modal-body .temp-modal-btn {
  margin-bottom: 15px;
}

/* MEGA MENU */


/* news page */
.abtn {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 3px;
  line-height: 25px;
  text-align: center;
  border-radius: 8px;
  position: relative; 
  font-weight: 400;
  transition: all 0.4s ease-in-out; 
}

.abtn-gray {
  color: #5E5E5E;
  border: 1px solid #5E5E5E;
}

.abtn-link {
  border: none;
  color: #24211A;
}

.abtn-link:hover {
  color: #000;
}

.abtn-gray:hover {
  color: #000;
  border: 1px solid #000;
}

.abtn-gray.selected {
  color: #fff;
  background: #000;
}

.abtn-gray.selected:hover {
  color: #fff;
  background: #000;
}

.news-page-filters-block {
  padding-bottom: 15px;
  border-bottom: 1px solid #5E5E5E;
  margin-bottom: 25px;
}

.page-filters-block {
  padding-bottom: 15px;
  border-bottom: 1px solid #5E5E5E;
  margin-bottom: 25px;
  margin-top: 25px;
}


.news-page-items .news-page-item {
  margin-bottom: 55px;
}

.show-more-container .news-showmore-btn {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}

.show-more-container .news-showmore-btn span {
  padding: 10px 20px;
  position: relative;
  background: #fff;
}
.show-more-container .news-showmore-btn::before  {
  content: '';
  width: 100%;
  height: 1px;
  background: none;
  vertical-align: middle;
  display: inline-block;
  border-bottom: 1px solid #5E5E5E;
  position: absolute;
  top: 50%;
  left: 0;
}

.filter-buttons {
  display: flex;
  /* justify-content: space-between; */
  /* width: 420px; */
  /* margin: auto; */
  /* text-align: center; */
}

@media (max-width: 600px) {
  .filter-buttons {
      /* flex-direction: column;
      align-items: center;
      width: 100%;
      margin: auto;
      text-align: center; */
    }

  .tax-page-button-block {
    width: 100%;
  }
}

/* pricing page */
.offers-container {
  justify-content: center;
  padding-left: 13px;
  padding-right: 13px;
}

.offers-container .offer-wrapper {
  padding-left: 2px;
  padding-right: 2px;
  display: flex;
  flex: 1;
}

.offer-content  {
  text-align: center;
  margin-top: 10px;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #C6C6C6;
}

.offer-content .included {
  list-style: none;
  padding: 0; 
  margin: 0; 
  text-align: center;
}

.offer-content .included li{
  list-style: none;
}

.offer-content .benefits {
  list-style: none;
  padding: 0; 
  margin: 0;
  text-align: center;
}

.offer-content .benefits li{
  list-style: none;
}

.offer-content .header {
  text-align: center;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 25px;
}

.offer-content .header h3 {
  text-align: center;
  margin: 0;
}

.offer-content .abtn {
  margin: 15px 0;
  width: 90%; 
  background: rgb(186,177,190);
  background: linear-gradient(90deg, rgba(186,177,190,1) 0%, rgba(239,239,241,1) 50%, rgba(158,158,160,1) 100%);
  color: #24211A;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
}

.abtn-silver {
  margin: 10px 0;
  background: rgb(186,177,190);
  background: linear-gradient(90deg, rgba(186,177,190,1) 0%, rgba(239,239,241,1) 50%, rgba(158,158,160,1) 100%);
  color: #24211A;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8;
  padding: 10px 20px;
}

.abtn-silver:hover {
  color: #000;
}

.pricing-page-header {
  font-size: 28px;
  font-weight: 500;
  color: #24211A;
  margin: 15px auto;
}

.pricing-page-sub-header {
  font-size: 22px;
  font-weight: 500;
  color: #24211A;
  margin-bottom: 25px;
}

@media (max-width: 1024px) {
  .offer-content .header h3 {
    font-size: 14px;
  }

  .offer-content ul li {
    font-size: 12px;
  }

  .offer-content .header {
    height: 100px;
  }

  .pricing-page-header {
    font-size: 22px;
    font-weight: 500;
    color: #24211A;
    margin: 15px auto;
  }

  .pricing-page-sub-header {
    font-size: 16px;
    font-weight: 500;
    color: #24211A;
    margin-bottom: 25px;
  }

}

@media (max-width: 600px) {
  
  .offer-content .header {
    height: 70px;
  }

  .offers-container .offer-wrapper {
    padding-left: 2px;
    padding-right: 2px;
    display: block;
    flex: none;
  }

  .offer-content .header h3 {
    font-size: 16px;
  }

  .offer-content ul li {
    font-size: 13px;
  }


}
/* Contact page */

.contact-page-title {
  font-size: 24px;
  margin: 30px 0;
  margin-top: 50px;
}

.contact-form ul {
  margin: 0;
  padding: 0;
}

.contact-form ul li {
  /* margin: 0; */
  padding: 0;
}

.contact-page-right-block h4 {
  margin: 20px 0;
}

.contact-page-right-block .contact-form label{
  margin-bottom: 5px;
}

.contact-page-right-block .map {
  float: initial;
  display: block;
  margin-top: 15px;
  height: 400px;
}

.contact-page-right-block .map iframe {
  height: 400px;
}

.contact-page-right-block .contact-info ul{
  padding: 0;
}
.contact-page-right-block .contact-info ul li {
  display: block;
  list-style-type: none;
  float: left;
  margin-bottom: 8px;
}

.contact-page-right-block .contact-info .contact-email::before {
	  content: '';
    width: 24px;
    height: 24px;
    background-image: url("/images/icons/mail-outline-2.png");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    background-position-y: -1px;
}
.contact-page-right-block .contact-info .contact-phone::before {
	  content: '';
    width: 24px;
    height: 24px;
    background-image: url("/images/icons/phone-outline-2.png");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    background-position-y: -1px;
}
.contact-page-right-block .contact-info .contact-address::before {
	  content: '';
    width: 24px;
    height: 24px;
    background-image: url("/images/icons/location-marker-outline-2.png");
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    background-position-y: -1px;
}
.contact-page-right-block .contact-info .contact-open-hours::before {
	  content: '';
    width: 24px;
    height: 24px;
	
	
	
	
	
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    background-position-y: -1px;
}

.page-title {
  font-size: 28px;
  /* line-height: 24px; */
  font-weight: 500;
  /* display: inline-block;
  box-sizing: border-box;
  word-wrap: break-word; */
  margin-top: 25px;
  margin-bottom: 20px;
}

/* SERIVICES PAGE */

.two-column-page-layout, .services-page-container {
  margin-top: 25px;
}

.two-column-page-layout .services-wrap , .services-page-container .services-wrap {
  padding: 0;
}
.two-column-page-layout .services-wrap p , .services-page-container .services-wrap p {
  margin-bottom: 10px;
}

.two-column-page-layout .fancy-title , .services-page-container .fancy-title {
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 0;
}

.sidebar h1 a {
  font-size: 23px;
  padding-left: 0;
}

ul.sidebar-left-menu , ul.services-menu {
  margin: 0;
  padding: 0;
}

ul.sidebar-left-menu li a , ul.services-menu li a {
  padding: 6px 20px;
  padding-left: 0;
  font-weight: 400;
}

.sidebar-left-menu ul , .services-menu ul {
  margin: 0;
  padding: 0;
}

.sidebar-left-menu ul.service-drop li , .services-menu ul.service-drop li {
  padding-left: 8px;
}

.news-filter-btn {
  font-weight: 600;
}
/* */
