/*Result Page*/

.az-result-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 155px;
}

.az-result-card {
  background: #F6F4EF;
  padding: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.az-result-icon {
  width: 64px;
  height: 64px;
  background: #071753;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.az-result-icon svg {
  width: 34px;
  height: 32px;
  fill: #fff;
}

.az-result-amount {
  font-family: var(--primary-font-h1);
  font-size: 64px;
  font-weight: 600;
  line-height: 84px;
  color: #071753;
  margin-top: 20px;
}

.az-result-type {
  font-family: var(--primary-font-h1);
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
  color: #071753;
  margin-top: 20px;
  position: relative;
}
.az-result-type::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #c4a47c;
  margin-top: 20px;
}

.az-result-desc {
  font-family: var(--primary-font-h1);
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #071753;
  margin-top: 20px;
}

/*Blog Archive*/
.az-blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  padding: 75px 0px;
}

.az-blog-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #ffffff;
  transition: transform 0.3s;
  max-width: 100%; 
  gap: 70px;
  border-bottom: 1px solid #DEE2DD;
  padding-top: 30px;
  padding-bottom: 60px;
  z-index: 99;
}

.az-blog-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.az-blog-card-image {
  flex: 1;
  max-width: 40%;
}

.az-blog-card-content {
  flex: 2;
}

.az-blog-card-date {
  font-family: var(--primary-font-h1);
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  color: #A1A1A1;
}
.az-blog-card-title a {
  font-family: var(--primary-font-h1);
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  color: #01373D;
  text-decoration: none;
}

.az-blog-card-title a:hover {
  color: var(--secondary);
}

.az-blog-card-excerpt {
  font-family: var(--primary-font-h1);
  font-size: 18px;
  font-weight: 400;
  color: #011E21;
  line-height: 32px;
}
.az-blog-card-link {
  font-family: var(--primary-font-h1);
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.5px;
  text-decoration: underline;
}
.az-hr-styled {
  border: 0;
  height: 1px;
  width: 100%;
  background: #DEE2DD;
  margin: 30px 0;
  position: relative;
}

.az-blog-card:not(:last-child)::before,
.az-blog-card:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 6px;
  height: 6px;
  background-color: #DEE2DD;
  border-radius: 50%;
}


.az-blog-card::before {
  left: 0;
}

.az-blog-card::after {
  right: 0;
}
.az-blog-card:last-child{
  border-bottom: none;
}

/*Single Post Styles*/
.az-single-post,  .az-blog-archive{
  padding-bottom: 60px;
}
.az-single-post .col-4, .az-blog-archive .col-4{
  order: 1;
}
.az-single-post .col-8, .az-blog-archive .col-8{
  padding-right: 50px;
}
.az-post-thumbnail img{
  width: 100% !important;
  border-radius: 10px;
}
.ct-separator{
  color: var(--primary);
}
.az-post-title{
  margin-bottom: 5px;
  font-size: 36px;
}
.az-post-content{
  margin-top: 20px;
}
.az-post-content p{
  line-height: 27px;
}

.az-post-meta{
  padding: 15px 0px;
}
.az-view-count{
  position: relative !important;
  padding-bottom: 20px;
  border-bottom: 1px solid #DEE2DD;
}
.az-view-count::before, .az-view-count::after  {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 6px;
  height: 6px;
  background-color: #DEE2DD;
  border-radius: 50%;
}

.az-view-count::before {
    left: 0px;
}

.az-view-count::after {
    right: 0px;
}
.az-view-count h2,.az-view-count .h2{
  font-family: var(--primary-font-h1); 
  font-size: 40px;
  font-weight: 400;
  line-height: 52px;
  color: #071753;
  margin-bottom: 0;

}
.az-view-count h3,.az-view-count .h3{
  font-family: var(--primary-font-h1); 
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #071753;
  margin-bottom: 0;
}
.az-social-title{
  font-family: var(--primary-font-h1); 
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  text-align: left;
  margin-bottom: 8px;
  padding-top: 30px;
  color: #071753;
}
.az-social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.az-social-share-buttons button {
  border: none;
  background: #ffffff;
  cursor: pointer;
}

.az-social-share-buttons-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--primary-font-h1); 
  margin-top: 100px;
  width: 100%;
}

.az-social-share-buttons-bottom h3 {
  flex: 0 0 10%; 
  font-size: 24px;
  font-family: var(--primary-font-h1);
  color: #071753;
  font-weight: 400;
  margin: 0;
}
.az-social-share-buttons-bottom h3 span{
  font-size: 18px;
  font-family: var(--primary-font-h1);
  color: #071753;
  font-weight: 400;
}

.az-social-shares {
  display: flex;
  gap: 10px;
  flex: 0 0 90%; 
  justify-content: space-between;
}

.social-button-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 18px;
  font-family: var(--primary-font-h1);
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  flex: 0 0 32%;
}
.social-button-bottom:hover{
  color: #ffffff;
}
.social-button-bottom img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.social-button-bottom.facebook {
  background-color: #3B5998;
}

.social-button-bottom.pinterest {
  background-color: #FF0000;
}


.social-button-bottom.linkedin {
  background-color: #007BB6;
}
.social-button-bottom:hover{
    background-color: var(--primary);
}


/*About Page Styles*/
.page-banner.about-page {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              #414e5ed6 url(../img/template-about-hero-bg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: overlay;
  background-position: top center;
  border-radius: 24px;
}

.about-section .col-5 img{
  background-color: #a2a19c;
  border-radius: 8px;
}
.about-section .count-bottom ul.grid li span{
  color: #518581;
}
.about-section .rt-content .btn{
  margin-top: 23px;
}
.az-meet-team {
  background: var(--white);
}
.az-meet-team-wrapper{
  padding-top: 120px;
  text-align: center;
}
.az-meet-team-subtitle {
  font-family: var(--primary-font-h1);
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}
.az-meet-team-title{
  font-family: var(--primary-font-h1);
  font-weight: 400;
  font-size: 64px;
  line-height: 84px;
}
.az-meet-team-desc{
  font-family: var(--primary-font-h1);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.az-team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 50px;
  padding-bottom: 120px;
  justify-content: center;
}
.az-team-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 8px;
  transition: transform 0.3s ease;
  max-height: 600px;
  flex: 0 0 30%;
  max-width: 30%;
  background: #f6f4ef;
}


.az-team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.az-team-card .az-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: 10px;
  text-align: left;
  padding-left: 40px;
  padding-bottom: 20px;
}

.az-team-card h3 {
  font-family: var(--primary-font-h1);
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 10px;
}

.az-team-card p {
  font-family: var(--primary-font-h1);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #FCD999;
}


.why-choose-section {
  background-color: #F6F4EF;
  padding-top: 165px;
  padding-bottom: 150px;
}
.why-choose-section .rt-content{
  text-align: center;
  padding: 0px 20px;
}
.why-choose-section .row{
    align-items: center;
}

.why-choose-section .st{ 
    color: var(--fourth);
}
.why-choose-banner {
  padding: 65px 0px;
}
.why-choose-banner img{
  border-radius: 24px;
}
.why-choose-features {
  display: flex;
  gap: 90px;
  padding-top: 40px;
}
.why-feature-icon{
    background-image: url(../img/why-feature-icon.svg);
    min-width: 54px;
    height: 54px;
    display: inline-block;
    margin: 0 auto 1rem;
    background-color: #001845;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 12px;
}
.why-feature-inner {
    text-align: left;
}
.why-feature-inner h3{
    font-family: var(--primary-font-h1);
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 10px;
}

/*Contact Page Styles*/
.page-banner.contact-page {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              #414e5ed6 url(../img/template-contact-hero-bg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: overlay;
  background-position: top center;
  border-radius: 24px;
}

.pa-title {
  font-family: var(--primary-font-h1);
  font-weight: 400;
  font-size: 84px;
  line-height: 108px;
}

.pa-description, .rank-math-breadcrumb p {
  font-family: var(--primary-font-h1);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
}
.pa-description {
	max-width: 810px;
	margin: 10px auto 20px;
	font-family: var(--primary-font-h1);
}
.contact-cta-wrapper {
  padding-top: 65px;
}
.card ul li a:hover{color: var(--highlight);}
.cta-header {
  text-align: center;
}

.cta-header h2 {
  font-family: var(--primary-font-h1);
  color: var(--primary);
  font-weight: 400;
  font-size: 48px;
  line-height: 70px;
  margin-bottom: 0px;
}

.cta-header p {
  font-family: var(--primary-font-h1);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

.contact-cards-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  background-color: var(--white);
  margin-top: 95px;
}

.contact-card {
  text-align: center;
}

.contact-card .icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1rem;
  background-color: #001845;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px 32px;
}

.email-icon {
  background-image: url('../img/cta-mail.svg');
}

.location-icon {
  background-image: url('../img/cta-location.svg');
}

.phone-icon {
  background-image: url('../img/cta-phone.svg');
}

.contact-card h3 {
  font-family: var(--primary-font-h1);
  color: var(--primary);
  font-weight: 400;
  font-size: 24px;
  line-height: 70px;
  margin-bottom: -5px;
}

.contact-card p {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0px;
}

.contact-card a {
  text-decoration: none;
  color: #001845;
}

.contact-card a:hover {
  text-decoration: underline;
}

.box-modules-card {
  background-color: #F6F4EF;
  margin: 85px 0px;
  padding: 35px;
  border-radius: 8px;
}

.contact-section .box-modules-card h2 {
  font-family: var(--primary-font-h1);
  color: var(--primary);
  font-weight: 400;
  font-size: 36px;
  text-align: center;
}

.contact-form-wrapper {
  border: 1px solid #071753;
  padding: 50px;
}

.box-modules-card form {
  max-width: 882px;
  margin: 0 auto;
  padding-top: 20px;
}

.box-modules-card input[type="text"],
.box-modules-card input[type="email"],
.box-modules-card input[type="tel"],
.box-modules-card textarea,
.box-modules-card select {
  background: #ffffff !important;
  color: #011E21A3 !important;
}

.box-modules-card .gform_button.button {
  background-color: #001845 !important; 
  color: white;
  border: none;
  border-radius: 8px; 
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  position: relative; 
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), 
              8px 8px 0px #f6e7d8 !important; 
}


.tm-wrap .item {
	padding: 60px 0;
	background: #F6F4EF;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 150px;
}
.tm-wrap .item::after {
	width: 100%;
	position: absolute;
	top: -99px;
	height: 100px;
	background: url(../img/bg-wave-top.svg);
	content: "";
	left: 0;
    z-index: 5;
}
.tm-wrap .item::before {
	width: 100%;
	position: absolute;
	bottom: -100px;
	height: 100px;
	background: url(../img/bg-wave-bottom.svg);
	content: "";
	left: 0;
    background-repeat: no-repeat;
    background-position: center -35px;
    background-size: 100%;
    z-index: 5;
}

.tm-wrap .item:nth-child(2n) {
	background: #071753;
	margin: 0 auto -115px;
	padding: 170px 0 135px;
	color: #fff;
}
.tm-wrap .item:nth-child(2n):before{content: none;}
.tm-wrap .r-title{color: #011e21; margin-bottom: 0px;}
.tm-wrap .t-bottom {
	justify-content: center;
	align-items: center;
}
.tm-wrap .rpt {margin: 0;}

.center-box {
	max-width: 1155px;
	margin: 0 auto;
	padding: 50px 0;
}

.center-box p {
	color: #011E21;
	text-align: center;
	font-family: "Noto Sans";
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px !important;
	padding: 0 67px;
}
.tm-wrap .item:nth-child(2n) p{color: #fff;}
.tm-wrap .item:nth-child(2n) .r-title {color: #fff;}
.tm-wrap .r-title {margin-bottom: 15px;}
.cta-header.used-outside-contact {margin-top: 30px;}

@media(max-width:1920px){
  .home-banner{margin: 0 20px}
  .home-banner h1,.home-banner .b-title{font-size: 5.36vw;}
}

@media(max-width:1800px){
    .mega-menu .left-side {flex: 0 0 30%; max-width: 30%;}
    .mega-menu .right-side {flex: 0 0 70%; max-width: 70%;}
}
@media(max-width:1690px){
    .phoneBox p span a {font-size: 25px;}
    ul.menu li {margin: 0px 6px;}
    .sc-logo {max-width: 335px;}
    .flip-section .container {padding: 0 20px;}
    .pa-section .container,.about-section .container{padding-left: 20px; padding-right: 20px;}
    
}

@media(max-width:1490px){
    .sc-logo {max-width: 255px;}
    .section-imgs {padding-left: 20px; padding-right: 20px;}
    .community {width: calc(100% - 4rem);}
    .section-testimonials::before {
    	content: "";
    	position: absolute;
    	width: 32%;
    	height: 96.5%;
    	background: RGBA(245, 95, 66, 0.3) url(../img/testimonial-bg.webp);
    	left: 0;
    	top: 13px;
    }
    .section-testimonials {background: none;}
    .single-sec-text.single-sec-text-right {padding: 0 30px;}
    .section-faq {padding: 20px 20px 145px;}
    .itm-content {padding: 65px 20px 20px; font-size: 17px;}
    .case-result .case-worth {font-size: 55px; line-height: 82px;} 
    .flip-section .container {padding: 0 20px;}
    .container {padding: 0 20px;}
    .p-title h2, .p-title .h2,.rt-content h2,.blog-section h2,.small-wrap h2,.faq .p-title h2{font-size: 50px; line-height: normal;}
    .recent-blog h3 {font-size: 25px; line-height: normal;}
    .blog-section .blog-item h3 {font-size: 30px; line-height: normal;}
    .section-services .box {height: 360px; padding: 0 15px;}
    .partner-section figure img {height: auto; width: auto !important; max-height: 117px;}
        
    .section-services .box h3 { margin: 0; } 
    .section-services .box { height: 200px; align-items: center; justify-content: center; text-align: center; } 
    .block-form_wrap { max-width: 700px; } 
    .block-form { margin: 45px 0 0; }
    .why-choose-section{padding: 100px 0px;}
    .az-meet-team-wrapper{padding-top: 100px;}
    .mega-menu .left-side {flex: 0 0 25%; max-width: 25%;}
    .mega-menu .right-side {flex: 0 0 75%; max-width: 75%;}
    .mega-menu .right-side ul li li a {padding: 4px 20px;}
}

@media(max-width:1350px){
    .phoneBox p span a {font-size: 18px;}    
    .why-choose-section .row{flex-direction: column-reverse;}
    .why-choose-section .row .first-col, .why-choose-section .row .second-col{width: 100%;}
    .az-team-container{padding: 50px 0px;}
}

@media(max-width:1270px){
 .mega-menu .right-side ul > li > a {
    padding: 0px 35px 0px 0;
 }
  .navbar-headBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	  padding: 0 75px 0 15px;        
    }
    .header {background: #fff;}
    .phoneBox {margin-left: auto;}
    .home-hero {clear: left;}
    .mean-container a.meanmenu-reveal {
    	color: #fff;
    	top: -68px;
    	right: 12px !important;
    	background: #114038;
    	border-radius: 50%;
    }
    .mean-container a.meanmenu-reveal span {background-color: #fff;}
    .mean-container .mean-bar {background: transparent;	padding: 0;	min-height: 0;}
    .mean-container .mean-nav {margin-top: 0;}
    ul.menu li {margin: 0;}
    .mean-container .mean-nav {background: #114038;}
    .mean-container .mean-nav ul li a.mean-expand{height: 34px; background: rgba(0, 0, 0,0.4);}


    .header .container-fluid { padding: 0; }
    .navbar-headBox { padding: 0 20px; }
    .faq .heading {padding: 50px 0px;}
    .top-block {padding: 0 20px;}
    .partner-section .wrapper {padding: 20px 0 70px;}
    .pa-section .box h2 {font-size: 23px;}
    .p-title h2, 
    .p-title .h2, 
    .rt-content h2, 
    .blog-section h2, 
    .small-wrap h2, 
    .faq .p-title h2,
    .blog-section h2 strong,
    .section-cta h2,
    .small-banner .btn-tel {
    	font-size: 40px;
    }
    .rt-content {padding-left: 60px;}
    .faq-header {padding: 15px 50px 15px 0px;}
    
    .home-banner-content { max-width: 47%; }
    .why-choose-banner{padding: 35px 0px;}
    .why-choose-section{padding: 60px 0px;}
    .why-choose-features {gap: 50px}
    .mega-menu .left-side {flex: 0 0 5%; max-width: 5%;}
    .mega-menu .right-side {flex: 0 0 95%; max-width: 95%;}
    .author-avatar, .author-details { width: 100%;}
    .author-card{flex-direction: column; gap: 15px;}
    .author-avatar {text-align: center;margin-bottom: 10px;}
    .author-avatar img{width: 300px; position: unset;}
    
}

@media(max-width:1024px){
  .about-section .count-bottom h3{
    font-size: 40px;
  }
  .parctice-area-title h2{font-size: 40px;}
  .az-result-container{padding-bottom: 50px;}
    .az-result-card{padding: 30px;}
    .az-result-icon {
      width: 50px;
      height: 50px;
    }
    .az-result-type{margin-top: 0px;}
    .az-result-amount{font-size: 40px; margin-top: 10px;}
    .col-5 {width: 100%;}
    .col-7 {width: 100%;}
    .col-6 {width: 100%;}
    .copyright {padding: 25px 10px 20px;}
    .copyright .ft-nav {margin-left: auto; margin-right: auto; order: -1;}
    .col-4 {width: 100%;}
    .col-8 {width: 100%;}
    .home-hero h1 {font-size: 6rem; line-height: 7rem;}
    .hero-bg {padding: 0 15px;}
    .btn.hd-button {
    	margin-left: 35px;
    	background-size: 30px;
    	background-position: center;
    	font-size: 0;
    	padding: 0 !important;
    	width: 35px;
    	height: 35px;
    }
    .contact-cta-wrapper {
      padding-top: 30px;
    }
    .az-view-count{
      padding-bottom: 30px;
    }
    .az-single-post .col-8, .az-blog-archive .col-8{padding-right: 0px;}
    .az-single-post .col-8, .az-blog-archive .col-8{padding-bottom: 50px;}
    .header .btn::after{content: none;}
    .copyright .container {justify-content: center;}
    .phoneBox p,.phoneBox p span {font-size: 0; line-height: 0;}
    .phoneBox p span a {
    	font-size: 0;
    	width: 35px;
    	height: 35px;
    	display: block;
    	background: url(../img/phone-solid.svg);
    	border-radius: 50%;
    	margin-right: -25px;
    	background-size: 19px;
    	background-repeat: no-repeat;
    	background-position: center;
    	border: 1px solid #114038;
    }
    .copyright .ft-nav { padding: 0; margin-left: 0; }
    .copyright ul li { display: flex ; align-items: center; }
    .footer .phone-btn { font-size: 24px; }
    .footer h3 { margin-bottom: 0; margin-top: 30px; }
    .tm-wrap .item:nth-child(2n){ padding: 50px 0 50px; }
    .navbar .container {padding: 0 15px;}
    .phone-cta {margin-right: 55px;}
/*     .right-box {margin-right: 35px;} */
    .cta {font-size: 24px;}
    .phone-cta span {font-size: 16px;}
    .col-3 {width: 33.33%;}
    .partner-section .lt-box {flex: 0 0 100%; max-width: 100%; text-align: center;}
    .partner-section .awards {flex: 0 0 100%; max-width: 100%;}
    .pa-item {gap: 10px;}
    .pa-item .item {flex: 0 0 calc(25% - 8px); max-width: calc(25% - 8px); min-height: 325px;}
    .pa-section .box {padding: 0 5px;}
    .pa-section .box h2 {font-size: 18px;}
    .small-banner .get-free {padding: 0;}
    .small-banner-content {text-align: center;}
    .pa-section {padding: 60px 0 120px;}
    .rt-content {padding: 30px 0px;}
    .about-section {padding: 25px 0 0;}
    .about-section.flip-section .rt-content {padding-left: 0; padding-right: 0;}
    .block-form_left {width: 100%;}
    .block-form_right {width: 100%;}
    .block-form {flex-wrap: wrap;}
    .wh-form {padding: 75px 50px;}
    .big-footer .footer-column {
    	flex: 0 0 33.33%;
    	max-width: 33.33%;
    }
    .big-footer .footer-column:first-child {
    	flex: 0 0 100%;
    	max-width: 100%;
    	text-align: center;
    }
    .footer a {font-size: 15px;}
    
    .home-banner-content{max-width: 100%; text-align: center; margin-left: 0; margin-right: 0;}
    .top-block {flex-wrap: wrap;}

    .home-banner-container { align-items: flex-start; } 
    .home-banner-content { text-align: center; padding-top: 36px; } 
    
    .home-banner h1 { margin: 0; }
    .home-banner figure img { width: 100%; max-width: max-content; max-height: 800px; margin: 35px auto 0; object-fit: cover; }
    .home-banner figure { margin-top: 140px; height: auto; text-align: center; }
    .pa-title{font-size: 60px;}
    .az-post-title{
      font-size: 3rem;
    }
    .box-modules-card p {font-size: 30px; }
    .contact-card .icon {width: 60px;height: 60px;}
    .why-choose-section .row .first-col{padding-right: 0px}
    .az-team-card h3 {font-size: 25px;}
    .az-team-card p{font-size: 16px;}
    .az-meet-team-wrapper{padding-top: 80px;}
    .az-meet-team-title,.cta-header h2 {font-size: 40px;}
/*     .btn-menu{display: none;} */
    .why-choose-section{padding: 50px 0px;}
    .why-choose-features {gap: 20px}
    .why-feature-icon{
      min-width: 40px;
      height: 40px;
      border-radius: 8px;
  }
  .az-blog-card-title a{
    font-size: 26px;
  }
  .az-blog-card-content{
    flex: 1;
  }
  .mobile-menu.mean-container {
    position: absolute;
    width: 100%;
  }
  .mean-container .mean-nav {
    background: var(--primary);
  }
  .practice-areas h1{font-size: 40px;}
  .home-banner h1, .home-banner .b-title {margin: 0;}
  .single .col-8 {order: -1;}
  .type-practice-areas {padding-left: 0;}
  
} 
  
@media (max-width: 1023px) {
  .az-blog-card {
    flex-direction: column;
    max-width: 100%;
  }
  .az-blog-card-image{
    max-width: 100%;
  }
  .az-div1,
  .az-div2,
  .az-div3,
  .az-div4,
  .az-div5,
  .az-div7 {
      width: 100%;
      max-width: 100%;
  }
  .why-choose-features{
    flex-direction: column;
  }
  .meanmenu-reveal{
    margin-top: -10px;
    }
}
@media(max-width:991px){
    .btn-a span.spb, .btn-a strong { display: none; }
    .blog-section .top-title { flex-direction: column; text-align: left; align-items: flex-start; } .blog-section a.btn { margin-left: 0; }
    .type-practice-areas{padding-left: 0px;}
     div.post-title{font-size: 2.5rem;}

}
@media (min-width: 768px){
  .az-result-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px){
    .az-team-container {
      align-items: center; 
      gap: 16px; 
  }
  .az-team-card{
    min-width: 250px;
    max-width: 250px;
  }
}
@media(max-width:768px){
    .az-team-card h3 {font-size: 20px; margin-bottom: 0;}
    .az-blog-card-title{font-size: 25px;}
    .copyright .ft-nav { width: 100%; justify-content: center; }
    .navbar .container {flex-wrap: wrap;}
    .sc-logo {max-width: 50%; flex: 0 0 50%; order:1;}
    .right-box {order: 2; border-left: 0;}
    .phone-cta {
    	padding-right: 15px;
    	order: 3;
    	margin-right: auto;
    	margin-bottom: 15px;
    	margin-top: 10px;
    }
    .az-blog-cards{
      padding: 30px 0px;
    }
    .az-blog-card-image {
      max-width: 100%;
    }
    .az-blog-card-date {
      margin-bottom: 5px;
    }
    .az-blog-cards {
        gap: 10px;
    }
    .az-meet-team-title{font-size: 40px; line-height: 50px;}
    .az-meet-team-wrapper {
      padding-top: 40px;
    }
    .cta-header h2{font-size: 40px;}
    .spb,.btn-menu strong{display: none;}
    .rts-content {margin-left: 0;}
    .top-block {justify-content: center;}
    .cmr {margin-left: auto; margin-bottom: 20px; margin-right: auto;}
    h2.title {padding-bottom: 20px; order: 1;}
    .col-3 {width: 50%;}
    .lts-content {margin-right: 0;}
    .pa-item .item:nth-child(2), .pa-item .item:nth-child(3) {bottom: 0;}
    .pa-item .item {flex: 0 0 calc(50% - 5px); max-width: calc(50% - 5px);}
    .partner-section .wrapper {padding: 30px 0 45px;}
    .big-footer .footer-column{flex: 0 0 100%; max-width: 100%;}
    .page-template-about .section-cta{margin-bottom: 30px;}
    .section-services .box h3 { margin: 0; } 
    .section-services .box { height: 200px; align-items: center; justify-content: center; text-align: center; }
    .block-form { margin: 0; border-top: 1px solid #f5cf96; } 
    .testimonial-section { padding: 0; }
    .page-template-testimonials .center-box p{font-size: 20px;}
    .why-choose-section {
      padding: 10px 0px;
    }
    .phone-inner { display: none; }

    .home-banner h1 { margin: 0; } 
    .home-banner figure {height: auto; width: 100%; } 
    .home-banner figure img { width: 100%; padding-top: 100px; } 
    .phone-inner { display: none; } .phone-cta { display: none; }

    section.section-contact .container { flex-direction: column; align-items: center; } 
    .section-contact_left { max-width: 473px; order: 2; }
    .section-contact_right { width: 100%; max-width: 473px; margin-bottom: 60px; order: 1 }
    .pa-title {font-size: 40px; line-height: normal; margin-bottom: 15px;}
    .az-post-title{
      font-size: 2rem;
    }
  .pa-description, .rank-math-breadcrumb p {
     font-size: 18px;
  }
  .contact-cards-wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }

  .contact-card .icon {
    width: 50px;
    height: 50px;
  }

  .cta-header h1 {
    font-size: 35px;
  }
  .box-modules-card p {
    font-size: 16px;
  }

  .contact-form-wrapper, .box-modules-card {
    padding: 20px;
  }

  .contact-cta-wrapper {
    padding-top: 0px !important;
  }
  .az-team-card .az-info{    padding-left: 20px; padding-bottom: 10px;}
  .az-team-card h3{line-height: 30px;}
  .section-contact_right{margin: 0 auto;}
  .practice-areas h1, .practice-areas h2{font-size: 40px; line-height: 55px; margin-top: 30px;}
  div.post-title{font-size: 2rem;}
  .az-team-card{max-height: none;}
  .az-social-share-buttons-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .az-social-share-buttons-bottom h3 {
      flex: 0 0 auto;
      margin-bottom: 10px;
  }
  .az-social-shares {
      flex: 0 0 auto;
      flex-direction: column;
  }
  .social-button-bottom {
      flex: 0 0 auto;
      width: 100%;
  }
  .az-blog-card {padding-bottom: 30px; gap: 30px;}
}
@media(max-width:767px){
  .practice-sub-area-block {	grid-template-columns: 1fr;}
  .right-title {display: block;}
  .right-title h3 {font-size: 35px;}
  .right-title {padding-left: 0; padding-right: 0; padding-top: 1px;}
  .tm-wrap {grid-template-columns: 1fr;	grid-row-gap: 20px;}
  .contact-section .box-modules-card h2 {font-size: 27px; line-height: normal;}
  .cta-header h2 {font-size: 40px; line-height: normal;}
  .box-modules-card {margin: 85px 0px 0; margin-bottom: 30px;}
  .page-banner {margin-bottom: 30px;}
  .tm-wrap .item {padding: 25px 0; margin-top: 75px;}
  .center-box p {padding: 0 20px;}
  .center-box {padding: 30px 0;}
  .home-banner h1 strong {font-size: 23px; margin: 10px 0 5px;}
  .home-banner h1 em.rwpi {font-size: 4.55vw;}
  .home-banner h1 {font-size: 6vw;}
  .right-side_bottom {display: none;}
  .hover-img-xd {display: none;}
  .section-services .box .link {
    	width: 40px;
    	height: 40px;
    	background-size: 14px;
    	top: 7px;
    	right: 10px;
    }
  .home-banner h1 strong, .home-banner .b-title strong {font-size: 22px; margin: 11px 0 9px;}
  .home-banner h1, .home-banner .b-title {font-size: 10vw;}
  .home-banner h1 em.rwpi, .home-banner .b-title em.rwpi {font-size: 6.2vw;}
  .faq .p-title h2,.faq .p-title h1{font-size: 2.25rem;}  
  .gform_next_button, .gform_previous_button {padding: 10px 15px !important; font-size: 16px !important; min-width: 110px !important;}
}

@media(max-width:600px){
    h2 { font-size: 26px;}
    .practice-areas h1{font-size: 35px; line-height: 1.2; margin-top: 0;}
    .practice-areas h2{font-size: 26px; line-height: 1.2; margin-top: 0;}
    .az-team-container {
      flex-direction: column; 
      align-items: center; 
      gap: 16px; 
    }
    .parctice-area-title h2{font-size: 32px;}
    .az-team-card{
      min-width: 100%;
    }
    .about-section .count-bottom h3{
      font-size: 35px;
      text-align: center;
    }
    .sc-logo {max-width: 175px; padding-right: 0; border-right: 0; margin-right: 20px;}
    .home-hero h1 {font-size: 5rem;	line-height: 6rem;}
    .az-meet-team-title, .cta-header h2{font-size: 35px; line-height: normal;}
    .footer h3 { margin-bottom: 15px; margin-top: 30px; } 
    .home-hero { height: auto; padding-top: 40px; } .home-hero h1 { margin: 0; }
    .copyright .container {padding: 0;}
    .big-footer h2 {font-size: 30px;}
    .section-contact h2 {font-size: 30px; line-height: normal;}
    .recent-blog h3 {font-size: 18px; line-height: normal;}
    .p-title h2, 
    .p-title .h2, 
    .rt-content h2, 
    .blog-section h2, 
    .small-wrap h2, 
    .faq .p-title h2, 
    .blog-section h2 strong, 
    .section-cta h2,
    .about-section.flip-section h2,
    .about-section.flip-section h2 strong,
    h2.title, 
    .small-banner .btn-tel {
    	font-size: 35px;
        line-height: normal;
    }
    .faq-header h3 {font-size: 17px; line-height: normal;}
    .gfield_radio .gchoice {padding: 15px; flex: 0 0 calc(50% - 9px); max-width: calc(50% - 9px);}
    .testimonial-section .item {padding: 30px 0px;}
    ul.grid li h3 {font-size: 35px;	letter-spacing: 0;}
    ul.grid li span {font-size: 17px; line-height: normal;}
    h2 br {display: none;}
    .small-banner .col-6 {padding: 30px 0;}
    .small-banner .get-free {display: flex; align-content: center; justify-content: center;}
    .small-banner .btn-tel {margin-right: 0;}
    .top-block .cta {gap: 45px;	min-width: 324px;}
    .section-services .box {height: 170px;}
    .section-services .box h3 {font-size: 26px;}
    .lm-block .btn {padding: 20px 40px;	font-size: 20px;}

    section.section-services .col-3 {
        width: 50%;
    }
    .ct-post-meta.azs-post {
      flex-wrap: wrap;
      row-gap: 0;
  }
    .hover-img-xd {position: relative;}
    .section-services .box h3 {
        font-size: 22px;
        margin: 0;
        padding: 40px 0px;
        min-height: 141px;
        text-align: center;
        align-items: center;
        display: flex;
    }
    section.section-services .row .col-3 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .section-services .box { background: var(--secondary); }
    .az-team-card .az-info{padding-bottom: 0px;}
    .az-team-card h3 {font-size: 20px;}
    .footer-column.footer-nav {flex: 0 0 100%; max-width: 100%;	margin-bottom: 20px;}
    .sc-social {
    	display: flex;
    	gap: 0px;
    	order: -1;
    	flex: 100%;
    	max-width: 100%;
    	text-align: center;
    	justify-content: center;
    }
    .copyright {
    	justify-content: center;
    	gap: 10px;
        flex-wrap: wrap;
    }
    .block-form .gfield_radio .gchoice {flex: 0 0 calc(50% - 9px); max-width: calc(50% - 9px);}
    .testimonial-section p {
        font-size: 18px !important;
        line-height: 27px !important;
      }
    .block-form_right .gfield_label {font-size: 35px !important;}
    .blog-item {padding-right: 0;}
    .footer .row {padding-left: 0; padding-right: 0; padding-top: 35px; padding-bottom: 0px;}
    
    ul.grid {flex-direction: column; justify-content: center; align-items: center; gap: 20px;}
    .home-banner h1 strong {font-size: 18px;}
    .home-banner h1 strong, .home-banner .b-title strong {font-size: 18px;}
    .home-banner figure { margin-top: 0;} 
    .card {padding: 35px 20px;}
    .faq-accordion {margin: 20px 0;}
    .pa-item .item {flex: 0 0 calc(100% - 0px);	max-width: calc(100% - 0px);}
    .about-section.flip-section h2 {letter-spacing: -1.5px;}
    .home-banner-container{position: relative;}
    .home-banner-content{align-items: flex-start; justify-content: center; height: 230px; padding-top: 20px;}
    .rts-content figure { margin: 10px 0 20px; }
    .top-content{padding: 20px;}
    .top-content h3{font-size: 34px}
    .small-banner .row {padding: 10px 15px;text-align: center;}
    .testimonial-section h2{font-size: 34px;}
    .block-form_wrap{padding: 20px;}
    .faq-accordion{padding: 1px 20px;}
    .faq-header { padding: 15px 40px 15px 0px; }
    .b-item{flex-direction: column;}
    .blog-section .recent-blog figure {min-height: 280px; min-width: 100%;}
    .partner-section {
        margin: 0;
    }
    .section-cta{padding: 40px 0;}
    .pa-item .item {
        min-height: 220px;
    }
    .section-services .box .hover-img img{display: none;}
    .practice-sub-area-block{padding-left: 0; gap: 0;}
    .type-practice-areas ul { padding-left: 15px;}
    .type-practice-areas ol{padding-left: 28px;}
    .type-practice-areas {padding-bottom: 19px;}
    .page-template-testimonials .center-box p {
        font-size: 18px;
        line-height: 1.6 !important;
    }
    .tm-wrap .item:after, .tm-wrap .item:before{display: none;}
    .tm-wrap .item:nth-child(2n) {
        padding: 0;
        margin: 0;
    }
    .tm-wrap .item{margin: 0}
    .box-modules-card {
        margin: 40px 0px 30px;
    }
    .box-modules-card {
        margin: 40px 0px 0;
        margin-bottom: 30px;
    }

}

@media(max-width:480px){
    .pa-section { padding: 25px 0; }
    .about-section.flip-section .rt-content { padding: 5px 0; }
    .copyright ul li a { font-size: 14px; }
    .sc-logo img {min-width: 235px!important;}
    .section-services .box {background: var(--secondary);}
    .home-banner figure img {padding-top: 0; margin: 0 auto;}
    .top-content {flex-direction: column; margin: 0px 0 20px;}
    .top-content::after {left: 0; width: 100%;}
    .top-content::before {width: 100%;}
    .lt-image {flex: 0 0 80px;}
    .main-content ul {padding: 0 10px;}
    .sm-box {flex-direction: column;}
    .top-block .cta {flex-direction: column; align-items: flex-start;}
    .btn-sqr {margin: 0;}
    .faq-section {padding: 25px 0;}
    .blog-section {padding: 30px 0 0;}
    .partner-section {margin: 50px 0 50px;}
    .at-details-main { padding: 20px 0; }
 }
