:root {
  /** Font default */
  --font-family-default: 'Raleway', sans-serif;
  ;
  --font-family-title: 'Quattrocento', serif;
  --font-size-default: 14px;
  --font-size-title: 18px;
  --font-color-default: #000000;
  --font-color-title: #6c757d;
  /** Use for input, button, and any other element */
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: .4s;
}

/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #FFFFFF;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

/* Global */

/* Header */

#nav .sub-menu.show-menu {
  display: block;
  opacity: 1;
}

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header-container {
  position: relative;
  padding: 40px 100px;
  transition: var(--default-transition);
}

.header-container.show-fh {
  background-color: rgba(4, 36, 74, .9);
  padding: 18px 100px;
}

.header-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-logo {
  max-width: 170px;
  width: 30%;
}

.fh-logo,
.header-container.show-fh .ph-logo {
  display: none;
}

.header-container.show-fh .fh-logo {
  display: block;
}

.header-navigation {
  width: 100%;
  position: relative;
}

.header-navigation #nav {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-navigation #nav>li {
  position: relative;
  padding: 0 30px;
}

.header-navigation #nav>li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .302);
}

.header-navigation #nav>li>a {
  position: relative;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 25px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.header-navigation #nav>li>a::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #70b944;
  transition: var(--default-transition);
}

.header-navigation #nav>li:hover>a::before {
  width: 48px;
}

.header-navigation #nav>li .sub-menu {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 30px;
  transition: var(--default-transition);
  min-width: 284px;
  width: 100%;
}

.show-fh .header-navigation #nav>li .sub-menu {
  padding-top: 39px;
}

.header-navigation #nav>li:hover .sub-menu {
  opacity: 1;
  z-index: 2;
  visibility: visible;
}

.header-navigation #nav>li .sub-menu li {
  margin-bottom: 1px;
}

.header-navigation #nav>li .sub-menu li a {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 52px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 61, 106, .9);
  transition: var(--default-transition);
}

.header-navigation #nav>li .sub-menu li a:hover {
  background-color: rgba(112, 185, 68, .9);
}


.section-button {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 25px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  border: none;
  background-color: transparent;
  outline: none;
  text-transform: uppercase;
}

.section-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-button span::before {
  position: absolute;
  content: '';
  z-index: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #70b944;
  border-radius: 25px;
  right: 0;
  top: 50%;
  transform: translate(35%, -50%);
  transition: var(--default-transition);
  background-color: transparent;
}

.section-button:hover span::before {
  background-color: #04244A;
  border-color: #04244A;
}

.section-button svg {
  z-index: 3;
}

.section-button .figure-liner,
.section-button .basic-liner {
  z-index: 1;
  stroke: #04244A;
}

.section-button:hover .figure-liner {
  stroke: #04244A;
}

.section-button:hover .basic-liner {
  stroke: #ffffff;
}


/* Footer */

.footer {
  position: relative;
  padding-bottom: 65px;
}

.footer-container {
  position: relative;
  padding: 90px 100px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #ffffff 40%, transparent 140%);
  z-index: 1;
  top: 0;
  left: 0;
}

.footer-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  opacity: .8;
}

.safari-true .footer-bg canvas {
  background-attachment: scroll;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-top {
  position: relative;
  display: flex;
  justify-content: center;
}

.footer-left {
  width: 50%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 100px;
}

.footer-right {
  width: 50%;
  padding-bottom: 120px;
}

.footer-git {
  position: relative;
  width: 100%;
}

.footer-git-title p {
  font-size: 18px;
  letter-spacing: 9px;
  line-height: 25px;
  text-transform: uppercase;
  color: #1b3d6a;
  font-weight: 500;
  text-align: center;
}

.footer-git-title h2 {
  font-size: 60px;
  line-height: 70px;
  color: #04244a;
  font-weight: 400;
  font-family: var(--font-family-title);
  text-align: center;
}

.footer-git-form {
  margin-top: 35px;
  position: relative;
}

.foot-form {
  position: relative;
}

.foot-form .r {
  position: relative;
  display: flex;
  flex-flow: wrap;
  row-gap: 30px;
  column-gap: 22px;
}

.foot-form .r .c {
  width: calc((100% / 2) - 11px);
  height: 51px;
  background-color: #04244a;
}

.foot-form .r .c-full {
  width: 100%;
  background-color: #04244a;
}

.foot-form .r .c input,
.foot-form .r .c-full textarea {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 400;
  padding: 0 20px;
}

.foot-form .r .c-full textarea {
  padding: 20px;
  resize: none;
  max-height: 101px;
}

.foot-form .section-button {
  width: fit-content;
  margin: auto;
  margin-top: 60px;
  color: #033333;
}

.footer-git-form .wpcf7 form .wpcf7-response-output {
  position: absolute;
  text-align: center;
  width: 100%;
}

.footer-git-form .use-floating-validation-tip .wpcf7-not-valid-tip {
  position: absolute;
  left: auto;
  width: auto;
  right: 0;
}

.footer-context,
.footer-logo {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  gap: 20px;
  margin-bottom: 30px;
}

.footer-contacts {
  position: relative;
}

.footer-contacts ul {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.footer-contacts ul li {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-contacts ul li,
.footer-contacts ul li a {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 25px;
  text-transform: uppercase;
  color: #666666;
  font-weight: 400;
  transition: var(--default-transition);
}

.footer-contacts ul li a:hover {
  color: #04244A;
}

.footer-contacts ul li i {
  color: #70b944;
}

.footer-contacts ul li:first-child i {
  font-size: 12px;
}

.footer-contacts ul li:last-child i {
  font-size: 22px;
}

.footer-smi {
  margin-top: 30px;
}

.footer-smi ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.footer-smi ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #04244A;
  position: relative;
  transition: var(--default-transition);
  width: 47px;
  height: 47px;
  border-radius: 24px;
  font-size: 18px;
}

.footer-smi ul li a:hover {
  background-color: #70b944;
}

.top-disclaimer,
.disclaimer {
  max-width: 1138px;
  width: 100%;
  margin: auto;
  font-size: 11px;
  letter-spacing: 0px;
  line-height: 20px;
  color: #000000;
  font-weight: 500;
  text-align: center;
  filter: drop-shadow(1.5px 2.598px 3.5px rgba(255, 255, 255, 0.35));
  position: relative;
  display: block;
  z-index: 3;
}
.top-disclaimer {
  padding: 70px 0 0;
}
.disclaimer {
  padding: 30px 0 10px 0;
}

.disclaimer a {
  font-size: 11px;
  letter-spacing: 0px;
  line-height: 20px;
  color: #000000;
  font-weight: 500;
  text-align: center;
  filter: drop-shadow(1.5px 2.598px 3.5px rgba(255, 255, 255, 0.35));
  transition: .4s;
}

.disclaimer a:hover,
.foot-copyright a:hover {
  color: #1b3d6a;
}

.foot-copyright {
  font-size: 12px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #000000;
  font-weight: 500;
  text-align: center;
  filter: drop-shadow(1.5px 2.598px 3.5px rgba(255, 255, 255, 0.35));
  position: relative;
  z-index: 2;
}

.foot-copyright a {
  color: #000;
  transition: .4s;
}

.foot-mls {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: #333333;
  position: relative;
  z-index: 2;
}

#side-smi {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

#side-smi ul {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 12px
}

#side-smi ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #04244A;
  width: 47px;
  height: 47px;
  border-radius: 25px;
  color: #ffffff;
  font-size: 18px;
  transition: .4s;
}

#side-smi ul li a:hover {
  background-color: #70b944;
}

#fc {
  position: relative;
}

.fc-content {
  position: relative;
  padding: 75px 0 90px;
}

.fc-title {
  margin-bottom: 50px;
}

.fc-title h2 {
  font-size: 60px;
  line-height: 70px;
  color: #04244a;
  font-weight: 400;
  font-family: var(--font-family-title);
  text-align: center;
}

.fc-title p {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
  text-align: center;
}

.fc-grid {
  position: relative;
  overflow: hidden;
}

.fc-grid .slick-slide {
  margin: 0 9px;
}

.fc-grid .slick-list {
  margin: 0 -9px;
}

.fc-grid-item {
  position: relative;
}

.fc-item-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.fc-item-image canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.fc-item-image::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(0deg, #000000 0%, transparent 50%);
  opacity: .502;
}

.fc-item-overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  text-align: center;
  transition: all ease .4s;
  padding-bottom: 47px;
}

.fc-item-image::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1b3d6a;
  opacity: 0;
  transition: .4s;
}

.fc-grid-item:hover .fc-item-image::after {
  opacity: .75;
}

.fc-grid-item:hover .fc-item-overlay {
  bottom: 50%;
  transform: translateY(50%);
  padding-bottom: 0;
}

.fc-item-overlay .fc-item-title {
  font-size: 24px;
  line-height: 68px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-family-title);
  text-align: center;
}

.fc-item-overlay .fc-item-link {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.fc-grid-controls {
  margin-top: 70px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.fc-grid-controls .section-button {
  color: #033333;
}

.fc-grid-controls .fc-arrow {
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 25px;
  color: #999999;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
  transition: .4s;
    outline: none !important;
}

.fc-grid-controls .fc-arrow:hover {
  color: #04244A;
}

.fc-grid-controls .fc-arrow i {
  font-size: 12px;
  color: #1b3d6a;
}

.fc-grid-controls .fc-arrow.arrow-left i {
  transform: scaleX(-1);
}

.fc-item-description {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 29px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  width: 100%;
  max-width: 80%;
  margin: auto;
  margin-bottom: 0px;
  height: 0;
  overflow: hidden;
  transition: .4s;
}

.fc-grid-item:hover .fc-item-description {
  height: auto;
  margin-bottom: 50px;
}

/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
}

.ip-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 250px;
  background-color: var(--dark);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ip-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */
#content-sidebar,
#content-full {
  min-height: 500px;
  margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
  width: 77.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
  line-height: 1.7;
}

#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
  font-family: var(--font-family-title);
  font-size: 60px;
  line-height: 1;
}

/* POJO */

body #pojo-a11y-toolbar {
  bottom: 0 !important;
  top: auto !important;
}

body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
  top: auto !important;
  bottom: 0 !important;
}

button:focus-visible,
a:focus-visible {
  outline-style: solid !important;
  outline-width: 5px !important;
  outline-color: red !important;
  transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
  display: none !important;
}

.post-page-get-a-free-home-valuation #inner-page-wrapper > .container {
    width: 100%;
    padding: 0;
}

/* fixes */
.ip-ld-gallery-btn .section-button {
    display: none;
}

body.aios-custom-ihomefinder-details-template .listings-disclaimer {
    width: 100%;
    max-width: 1456px;
    margin: 0 auto;
    padding: 10px 30px;
}

.footer-contacts ul li i {
    min-width: 22px;
}

body.page-id-54 .ai-minimalist-column-agent-details {
    background: #04244a;
}
body.page-id-54 .ai-minimalist-column-agent-details a {
    color: #fff;
}
body.page-id-54 .ai-minimalist-column-agent-details a:hover {
    color: #fff;
    opacity: 0.6;
}
body.page-id-54 ul.ai-minimalist-contact-details li span[class*=ai-font], 
body.page-id-54 ul.ai-minimalist-contact-details li em a, 
body.page-id-54 ul.ai-minimalist-contact-details li, 
body.page-id-54 ul.ai-minimalist-contact-details li a span {
    color: #000;
}

body.page-id-54 #content .ai-minimalist-column-content-left .entry-title {
    color: #04244a;
}

body #agents-single ul.agents-contact li > div {
	text-align: center;	
}

body .aios-smf-theme-one #theme-content .tc-row:nth-of-type(2n+1) .tc-col-left {
	color: #666666;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: fit-content !important;
    font-size: 11px !important;
}
.sotheby-disclaimer{
  padding-top: 20px;
}
#inner-page-wrapper #side-smi{
  display: none;
}
.slick-arrow.slick-hidden {
    display: none !important
}
#ihf-main-container.ihf-modal-container .nav-tabs>li:not(.active)>a:hover{
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .header-container:not(.show-fh) .header-logo {
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.7));
    -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.7));
  }
}

@media (max-width: 1440px) {

  .header-container {
    padding: 40px 5%;
  }

  .header-container.show-fh {
    padding: 20px 5%;
  }

  .header-navigation #nav>li {
    padding: 0 15px;
  }

  .fc-item-description {
    font-size: 12px;
    line-height: normal;
  }

  .fc-grid-item:hover .fc-item-description {
    margin-bottom: 15px;
  }
}

@media (max-width: 1199px) {
  .header-navigation #nav>li {
    padding: 0 10px;
  }

  .header-navigation #nav>li>a {
    font-size: 12px;
  }

  .disclaimer {
    padding: 40px 5% 0;
  }

  .foot-copyright {
    padding: 0 5%;
  }

  .footer-container {
    padding: 90px 5% 0;
  }

  .footer-bg canvas {
    background-attachment: scroll;
  }

  #side-smi {
    left: 5px;
  }

  .fc-item-overlay .fc-item-title {
    font-size: 18px;
    line-height: 28px;
  }

}

#listings-results .listings-grid .listings-col:hover .listings-footer,
#listings-results .listings-sort ul li.active a, #listings-results .listings-sort ul li a:hover,
#listings-results .listings-table .listings-table-body .listings-table-label,
#listings-results .listings-list .listings-link:hover,
#listings-results .listings-pagination ul li.active,
#listings-results .listings-pagination ul li.active a, #listings-results .listings-pagination ul li a.active, #listings-results .listings-pagination ul li a:hover {
  background: #04244a !important;
}

.aios-custom-ihomefinder-template #ihf-main-container.ihf-modal-container .modal input[type=submit].active,
.aios-custom-ihomefinder-template #ihf-main-container.ihf-modal-container .modal input[type=submit]:hover,
.aios-custom-ihomefinder-template #ihf-main-container.ihf-modal-container .modal button[type=submit].active,
.aios-custom-ihomefinder-template #ihf-main-container.ihf-modal-container .modal button[type=submit]:hover,
.aios-custom-ihomefinder-template #ihf-main-container.ihf-modal-container .modal button#ihf-alert-popup-optout:hover{
  background: #262626 !important;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {

  #pojo-a11y-toolbar {
    display: none;
  }

  /* The following are used on inner pages. Please edit carefully. */
  .inner {
    width: 100%;
  }

  #content-sidebar,
  #content-full {
    width: 100%;
  }

  .outer {
    width: 100%;
    min-width: 100%;
  }

  #content-sidebar #content {
    width: 100%;
  }

  .header-navigation {
    display: none;
  }

  header.header {
    position: relative;
    background-color: #1b3d6a;
  }

  .header-content {
    justify-content: center;
  }

  .header-logo {
    width: fit-content;
  }

  .header-logo img {
    width: 100%;
    height: auto;
  }

  .footer-top {
    flex-flow: column;
    align-items: center;
    gap: 50px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-left {
    padding-right: 0;
    border-right: 0;
  }

  .footer-contacts ul li,
  .footer-contacts ul li a {
    font-size: 11px;
    letter-spacing: normal;
  }

  .footer-contacts ul li {
    gap: 10px;
  }

  .footer-logo img {
    width: 100%;
    height: auto;
  }

  #content .archive-subtitle,
  #content .archive-title,
  #content .entry-title {
    font-size: 40px;
    line-height: 1;
  }

  #main-wrapper {
    margin-top: 52px;
  }

  .fc-content {
    padding: 75px 5% 90px;
  }

  .fc-title h2 {
    font-size: 40px;
  }

  .fc-grid-controls {
    gap: 20px;
    flex-flow: wrap;
  }

  .fc-grid-controls .section-button {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .ip-lr-qs-element form {
      display: flex;
      flex-direction: column;
  }
  #agents-single .agents-img{
      max-width: 350px !important;
      margin: auto !important;
  }
  #agents-results .agents-img {
      max-width: 350px !important;
      margin: auto !important;
  }
  #agents-results .agents-contact li a {
      font-size: 12px;
  }
  #agents-single ul.agents-contact li > div {
      display: flex;
      justify-content: center;
  }
    
    .top-disclaimer,
  .disclaimer{
    padding-left: 15px;
    padding-right: 15px;
  }

}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .ip-banner .container {
    width: 100%;
  }

  .foot-form .r .c {
    width: 100%;
  }
    #agents-single .agents-contact li.agent-email-address {
        margin: 0 0 20px !important;
    }
}
@media only screen and (max-width: 480px) {
      #agents-single .agents-contact li.agent-email-address {
        margin: 0 0 0px !important;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */