@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'D-DIN';
  src: url('../fonts/D-DIN-Bold.eot');
  src: url('../fonts/D-DIN-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DIN-Bold.woff2') format('woff2'),
    url('../fonts/D-DIN-Bold.woff') format('woff'),
    url('../fonts/D-DIN-Bold.ttf') format('truetype'),
    url('../fonts/D-DIN-Bold.svg#D-DIN-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'D-DIN';
  src: url('../fonts/D-DIN.eot');
  src: url('../fonts/D-DIN.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DIN.woff2') format('woff2'),
    url('../fonts/D-DIN.woff') format('woff'),
    url('../fonts/D-DIN.ttf') format('truetype'),
    url('../fonts/D-DIN.svg#D-DIN') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'D-DIN Condensed';
  src: url('../fonts/D-DINCondensed.eot');
  src: url('../fonts/D-DINCondensed.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DINCondensed.woff2') format('woff2'),
    url('../fonts/D-DINCondensed.woff') format('woff'),
    url('../fonts/D-DINCondensed.ttf') format('truetype'),
    url('../fonts/D-DINCondensed.svg#D-DINCondensed') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'D-DIN Exp';
  src: url('../fonts/D-DINExp.eot');
  src: url('../fonts/D-DINExp.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DINExp.woff2') format('woff2'),
    url('../fonts/D-DINExp.woff') format('woff'),
    url('../fonts/D-DINExp.ttf') format('truetype'),
    url('../fonts/D-DINExp.svg#D-DINExp') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'D-DIN Condensed';
  src: url('../fonts/D-DINCondensed-Bold.eot');
  src: url('../fonts/D-DINCondensed-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DINCondensed-Bold.woff2') format('woff2'),
    url('../fonts/D-DINCondensed-Bold.woff') format('woff'),
    url('../fonts/D-DINCondensed-Bold.ttf') format('truetype'),
    url('../fonts/D-DINCondensed-Bold.svg#D-DINCondensed-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'D-DIN Exp';
  src: url('../fonts/D-DINExp-Bold.eot');
  src: url('../fonts/D-DINExp-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DINExp-Bold.woff2') format('woff2'),
    url('../fonts/D-DINExp-Bold.woff') format('woff'),
    url('../fonts/D-DINExp-Bold.ttf') format('truetype'),
    url('../fonts/D-DINExp-Bold.svg#D-DINExp-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'D-DIN Exp';
  src: url('../fonts/D-DINExp-Italic.eot');
  src: url('../fonts/D-DINExp-Italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DINExp-Italic.woff2') format('woff2'),
    url('../fonts/D-DINExp-Italic.woff') format('woff'),
    url('../fonts/D-DINExp-Italic.ttf') format('truetype'),
    url('../fonts/D-DINExp-Italic.svg#D-DINExp-Italic') format('svg');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'D-DIN';
  src: url('../fonts/D-DIN-Italic.eot');
  src: url('../fonts/D-DIN-Italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/D-DIN-Italic.woff2') format('woff2'),
    url('../fonts/D-DIN-Italic.woff') format('woff'),
    url('../fonts/D-DIN-Italic.ttf') format('truetype'),
    url('../fonts/D-DIN-Italic.svg#D-DIN-Italic') format('svg');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

:root {

  --orange: #e47238;
  --orange-07: rgba(228, 114, 56, 0.7);
  --orange-05: rgba(228, 114, 56, 0.5);
  --orange-02: rgba(228, 114, 56, 0.2);
  --orange-01: rgba(228, 114, 56, 0.1);

  --blue: #1e3b55;

  --creamy: #FEF5DF;
  --creamy-07: rgba(254, 245, 223, 0.7);
  --creamy-05: rgba(254, 245, 223, 0.5);
  --creamy-02: rgba(254, 245, 223, 0.2);
  --creamy-01: rgba(254, 245, 223, 0.1);

  --grey: #525151;

  --white: #FFFFFF;
  --black: #000000;
  --text: #000000;

  --transparent: transparent;
  --transition: all 0.2s ease-in-out;

  --radius-5: 5px;
  --radius-10: 10px;
  --radius-15: 15px;
  --radius-20: 20px;
  --radius-full: 30px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: 15px;
  line-height: 1.7;
  font-family: "Montserrat", sans-serif;
  color: var(--black);
  background-color: var(--white);
  scroll-behavior: smooth;
  height: 100%;
}

p {
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1em;
}

a {
  font-family: "Montserrat", sans-serif;
  color: var(--green);
  text-decoration: underline;
  transition: var(--transition);
}

a:hover {
  color: var(--orange) !important;
  text-decoration: underline;
  transition: var(--transition);
}
a:visited {
  color: var(--black);
}
img {
  max-width: 100%;
  display: block;
}

.radius-5 {
  border-radius: var(--radius-5);
}

.radius-10 {
  border-radius: var(--radius-10);
}

.radius-15 {
  border-radius: var(--radius-15);
}

.radius-20 {
  border-radius: var(--radius-20);
}

.radius-full {
  border-radius: var(--radius-30);
}


button,
input,
select,
textarea {
  font-family: "Montserrat", sans-serif;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button,
.button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background-color: var(--green);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 9px 30px;
  transition: var(--transition);
  letter-spacing: -0.2px;
  border: 1px solid var(--green);
  text-decoration: none;
  text-align: center;
  line-height: normal;
}

button:hover,
.button:hover {
  background-color: var(--orange);
  color: var(--white);
  transition: var(--transition);
  border-color: var(--orange);
  text-decoration: none;
}

/* Heading Setup start */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'D-DIN';
  font-weight: bold;
}

h1 {
  font-size: 3.5em;
  margin: 0 0 0.3em;
  line-height: 1.2;
  /* letter-spacing: -0.2px; */
}

h2 {
  font-size: 2.9em;
  margin: 0 0 0.3em;
  line-height: 1;
  /* letter-spacing: -1.0px; */
}

h3 {
  font-size: 1.67em;
  margin: 0 0 0.5em;
  line-height: 1.3;
  /* letter-spacing: -0.6px; */
}

h4 {
  font-size: 1.375em;
  /* 22px (30px * 0.73) */
  margin: 0 0 0.6em;
  line-height: 1.4;
  /* letter-spacing: -0.2px; */
}

h5 {
  font-size: 1.125em;
  /* 18px */
  margin: 0 0 0.7em;
  line-height: 1.5;
}

h6 {
  font-size: 1em;
  /* 16px (matches body) */
  margin: 0 0 1em;
  line-height: 1.6;
}

@media (max-width:700px) {
  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
  }
}

/* Heading Setup end */

/* Column Setting start */

.col-1 {
  width: 8.333333%;
}

.col-2 {
  width: 16.666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333333%;
}

.col-5 {
  width: 41.666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333333%;
}

.col-8 {
  width: 66.666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333333%;
}

.col-11 {
  width: 91.666667%;
}

.col-12 {
  width: 100%;
}

.col-1 p:last-child,
.col-2 p:last-child,
.col-3 p:last-child,
.col-4 p:last-child,
.col-5 p:last-child,
.col-6 p:last-child,
.col-7 p:last-child,
.col-8 p:last-child,
.col-9 p:last-child,
.col-10 p:last-child,
.col-11 p:last-child,
.col-12 p:last-child {
  /* margin-bottom: 0px; */
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

main [class*="col-"] ul,
main [class*="col-"] ol {
  padding-left: 40px;
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  [class*="col-"] {
    width: 100%;
  }

  main [class*="col-"] ul,
  main [class*="col-"] ol {
    padding-left: 20px;
    margin-bottom: 0em;
  }
}

/* Column Setting end */





/* Basic Container Setup start */

.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 24px;
  margin: 0 auto;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}


@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 1080px;
  }
}

@media (max-width: 1099px) {
  .container {
    max-width: 980px;
  }

  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 850px;
  }
}

@media (max-width: 880px) {
  .container {
    max-width: 750px;
  }

  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

/* Basic Container Setup end */


/* Navigation */

header {
  color: var(--grey);
  position: absolute;
  width: 100%;
  z-index: 9;
}

.hdr-left a {
  display: flex;
  background: var(--white);
  z-index: 9;
  position: relative;
  border-radius: 100%;
  padding: 14px;
  width: 150px;
  height: 150px;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}
.hdr-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    grid-gap: 20px;
}
.hdr-right a {
    background-color: #e47238;
    padding: 12px 32px;
    vertical-align: middle;
    height: auto;
    text-transform: uppercase;
    border-radius: 40px;
    font-family: "montserrat";
    font-weight: 600;
    color: #fff;
    border: 0;
    text-decoration: none;
    display: inline-block;
    line-height: 1em;
    transition: all 0.3s;
}
.hdr-right a:hover{
  background-color: rgb(79, 111, 141);
  color: #fff !important;
}
@media (max-width:767px){
	.hdr-left a{width: 120px;height: 120px;}
  .hdr-right a{padding: 12px 18px;text-align: center;}
}
.landing_banner {
  padding: 200px 0 120px 0;
  position: relative;
  background-size: cover !important;
  min-height: 700px;
}

.landing_banner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, black 0%, transparent 100%);
  background-position: left -400px top;
  opacity: 0.85;
}

.landing_banner h1 {
  font-size: 2.9em;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: bold;
}

.landing_banner .container {
  position: relative;
}

.bnr-small-title p {
  font-size: 1.5em !important;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1.5em;
  background: #efe7d1;
  display: inline-flex;
  padding: 6px 25px;
  border-radius: 50px;
  color: var(--black) !important;
}

.bnr-small-title,
.bnr-small-title p {
  color: var(--white);
  font-size: 1rem !important;
  font-family: 'Montserrat' !important;
  line-height: 1.5;
}

.bnr_main .col-6:first-child {
  color: var(--white);
}

.bnr_main {
  display: flex;
  column-gap: 50px;
  align-items: center;
}

.bnr_main .col-6:nth-child(2) {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
}

.bnr_main h2 {
  font-size: 2.5em;
  line-height: normal;
  margin-bottom: 0.5em;
  color: var(--blue);
  font-weight: bold;
}

.bnr_main .col-6 {
  width: 50%;
}

.s1_main {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}

.landing_s1 {
  background: url(../images/landing-page-pattern.webp) top center repeat;
  position: relative;
  border-bottom: 1px solid #ebebeb;
}

.landing_s1 .container {
  position: relative;
}

.landing_s1::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.90);
}

.s1_main h2 {
  font-size: 2.5em;
  line-height: 1.2;
  color: var(--blue);
}

.s1_main h4 {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 0.8em;
  color: var(--orange);
}
.s1_main h4 a{
	font-family: 'D-DIN';
}
.s1_address a:hover h3, .s1_address a:hover p, .s1_address a:hover{
  color: var(--orange);
}
.s1_address a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--white);
  border: 1px solid #bbb;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.10);
  text-decoration: none;
}

.s1_address img {
  width: 30px;
  height: 38px;
  display: flex;
}

.s1_address h3 {
  font-size: 20px;
  line-height: normal;
  margin: 10px 0;
}

.bnr-content p {
  font-size: 16px;
}

.bnr-content p:last-child {
  margin-top: 20px;
}

.landing_s1 .col-6:first-child {
  width: 65%;
}

.landing_s1 .col-6:last-child {
  width: 35%;
}



.gform-theme--framework .gform_validation_errors {
  display: none !important;
}

.gform-theme--framework .gfield input,
.gform-theme--framework .gfield select {
  box-shadow: none !important;
  border-radius: 40px !important;
  padding: 9px 15px !important;
  font-family: "montserrat" !important;
      outline: 0 !important;
}
.gform-theme--framework .gfield input:focus,
.gform-theme--framework .gfield select:focus {
 outline: 0 !important;
}
.gform-theme--framework .gform_confirmation_message {
    font-weight: bold;
    line-height: normal;
    color: #000;
    border-radius: 8px;
}
.gform-theme--framework .gform_confirmation_message span {
    font-weight: bold !important;
}
.gform_confirmation_message{
  
}

.gform-theme--framework .gform_heading {
  display: none;
}

.gform-theme--framework .gform_fields {
  row-gap: 12px !important;
}

.gform-theme--framework .ginput_container_fileupload input {
  padding: 0 !important;
}

.gform-theme--framework .gfield_description.gform_fileupload_rules {
  display: none;
}

.gform-theme--framework .validation_message.gfield_validation_message {
  padding: 0 !important;
  font-size: 12px !important;
  border: 0 !important;
  background: transparent !important;
}

.gform-theme--framework .gform-footer .gform_button {
  background-color: #e47238 !important;
  padding: 8px 32px !important;
  vertical-align: middle !important;
  height: auto !important;
  text-transform: uppercase !important;
  border-radius: 40px !important;
  font-family: "montserrat" !important;
  font-weight: 600 !important;
  color: #fff !important;
  border: 0 !important;
}

.gform-theme--framework .gform-footer .gform_button:hover {
  background-color: rgb(79, 111, 141) !important;
}

.gform-theme--framework .gform-footer .gform_button:focus {
  outline: 0 !important;
}


/* 
.bnr_main .gform_wrapper.gravity-theme .gfield_validation_message,
.bnr_main .gform_wrapper.gravity-theme .validation_message {
  padding: 0 !important;
  font-size: 12px !important;
  border: 0 !important;
  background: transparent !important;
}

.bnr_main .gform_wrapper.gravity-theme .gfield input,
.bnr_main .gform_wrapper.gravity-theme .gfield select {
  box-shadow: none !important;
  border-radius: 40px;
  padding: 9px 15px !important;
  font-family: "montserrat" !important;
}

.bnr_main .gform_footer input[type="submit"],
.bnr_main .gform_footer input[type="submit"]:focus {
  border-radius: 40px;
  font-family: "montserrat" !important;
  font-weight: 600 !important;
  color: #fff !important;
  border: 0 !important;
}

.bnr_main .gform_wrapper.gravity-theme .gfield_label {
  font-family: "montserrat" !important;
  font-size: 14px;
} */

/* .bnr_main .gform_heading {
  display: none;
} */

.s1_main p {
  margin-bottom: 1em;
}

.s1_main .s1_address p {
  margin-bottom: 0;
}

.s1_description {
  padding-right: 50px;
}

.s1_description a {
  text-decoration: underline;
  font-weight: 600;
}

.s1_description p:last-child {
  margin-bottom: 0;
}

.landing_s2 p {
  margin-bottom: 1em;
}

.s2_main p:last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 1099px) {

  .s1_description {
    padding-right: 0;
  }

  /* .bnr_main .gform_wrapper.gravity-theme .gfield.gfield--width-half {
    grid-column: span 12;
  } */

  /* .bnr_main .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 12px;
  } */

  .landing_banner::before {
    background-position: left -50% top;
    opacity: 0.8;
    width: 100%;
    height: 130%;
  }
}

@media screen and (max-width: 991px) {
  .landing_banner {
    padding: 200px 0 70px 0;
  }

  .bnr_main .col-6 {
    width: 100%;
  }

  .bnr_main {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .bnr_main {
    display: flex;
    column-gap: 0;
    align-items: center;
    flex-direction: column;
  }

  .bnr_main .col-6 {
    width: 100%;
  }

  .bnr_main {
    display: flex;
    column-gap: 0;
    align-items: center;
    flex-direction: column;
    row-gap: 30px;
  }

  .s1_main {
    display: flex;
    justify-content: space-between;
    column-gap: 0;
    row-gap: 30px;
    flex-direction: column;
  }

  .landing_s1 .col-6:first-child,
  .landing_s1 .col-6:last-child {
    width: 100%;
  }


}

@media screen and (max-width: 480px) {
  .bnr_main .col-6:nth-child(2) {
    padding: 25px;
  }

  .landing_banner h1 {
    font-size: 2.5em;
    line-height: 1.1;
  }

  .s1_main h2 {
    font-size: 2em;
    line-height: 1.1;
    color: var(--blue);
  }

  .s1_main h4 {
    font-size: 1.2em;
  }

  .bnr_main h2 {
    line-height: 1.1;
    font-size: 2em;
  }
}

/* Footer start */

footer {
  background-color: var(--grey);
  color: var(--white);

}

.footer-row {
  display: flex;
  padding-top: 30px;
}

.copy-raw {
  padding-bottom: 5px;
  text-align: center;
  border-top: 1px solid rgba(187, 187, 187, 0.29);
  padding-top: 15px;
  margin-top: 20px;
  font-size: 12px;
}

.logo-row a {
  max-width: 100px;
  display: flex;
}

.phone-row a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.58em;
  display: flex;
  column-gap: 15px;
}

.phone-row a:hover {
  color: var(--creamy);
}

.phone-row img {
  max-width: 30px;
}

.fax-row img {
  max-width: 30px;
}

.fax-row {
  color: var(--white);
  text-decoration: none;
  font-size: 1.24em;
  display: flex;
  column-gap: 15px;
  margin-bottom: 1.2em;
}

.phone-row {
  margin-bottom: 0;
}

.address-row img {
  max-width: 24px;
}

.address-row a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 1em;
  display: flex;
  column-gap: 12px;
  max-width: 220px;
  align-items: flex-start;
  margin-top: 25px;
}

.address-row a:hover {
  color: var(--creamy);
}

.foo-1 {
  display: flex;
  column-gap: 20px;
}

.hrs-row {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.58em;
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.hrs-row img {
    width: 25px;
    height: 25px;
}

.social-row {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: end;
}

.social-row a {
  max-width: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.social-row a img {
  width: 30px;
}
.footer-row .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    grid-gap: 40px;
}

@media (max-width: 1099px) {
  .footer-row .col-12{flex-direction: column;grid-gap: 4px;}
}
@media (max-width: 991px) {
  .footer-row {
    display: flex;
    padding-top: 30px;
    flex-direction: column;
  }

  .footer-row .col-6,
  .footer-row .col-3 {
    width: 100%;
  }

  .social-row {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: start;
  }

  .footer-row .col-6 {
    flex-direction: column;
  }

  .address-row {
    margin-bottom: 0.8em;
  }
}
@media (max-width:767px){
  .hrs-row{font-size: 1em;}
  .phone-row a{font-size: 1em;}
}
@media (max-width:530px){
  .footer-row .col-12{grid-gap: 12px;align-items: flex-start;}
}

/* Footer end */


/* New style added */
.portland__location h2{
  color: #526C7C;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
}
.port_logo{
  max-width: 497px;
}
.port_logo>a{
  display: flex;
}
.list__items{
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.list__items li {
    font-size: 20px;
    color: #113256;
    font-weight: 500;
}
.portland__location_inner {
    display: flex;
    margin-bottom: -100px;
    position: relative;
}
.inner-box_wrap {
    padding: 33px;
    background: #EBEDF0;
    border-radius: 20px;
    min-width: 465px;
}
.inner-box_wrap h3 {
    margin-bottom: 25px;
    color: #526C7C;
    font-size: 30px;
    font-family: "Montserrat", sans-serif;
}
.inner-box_wrap h3 span{
  color: #8F2128;
}
span.address-wrap {
    display: flex;
    color: #113256;
    font-weight: 500;
    font-size: 20px;
}
.inner-box_wrap strong {
    color: #113256;
    font-size: 16px;
    display: flex;
    margin-top: 10px;
    margin-bottom: 32px;
}
a.phone_no {
    margin-bottom: 15px;
    text-decoration: none;
    color: #526C7C;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    display: flex;
}
a.phone_no:hover{
  color: #8F2128;
}
.btn__wrap {
    padding: 7px 30px;
    background: #FF914C;
    border-radius: 28px;
    font-family: 'D-DIN';
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transform: translateY(20px);
    margin-bottom: -40px;
    text-align: center;
}
.btn__wrap:hover{
  text-decoration: none;
  background: #8F2128;
  color: #fff !important;
}
.portland__location_inner .port_logo {
    width: 35%;
}
.portland__location_inner .desc__sec{
  width: 65%;
}
.portland__location .container{
  max-width: 1300px;
}
.portland__location_inner .port_logo img {
    margin-bottom: 10px;
    max-width: 400px;
}
.desc__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.desc__inner_left {
    padding-top: 160px;
}
.inner__box {
    margin-right: 76px;
    max-width: 155px;
    margin-left: auto;
    text-align: right;
}
.social-media__wrap {
    padding-top: 60px;
}
.social-media__wrap ul {
    display: flex;
    list-style-type: none;
    gap: 20px;
    justify-content: flex-end;
}
.social-media__wrap ul li img{
  width: 40px;
}
.social-media__wrap ul li:hover img{
  opacity: 0.8;
}
.inner-box_wrap p {
    font-size: 16px;
    padding-top: 10px;
}
@media screen and (max-width:1024px) {
  .portland__location_inner {
    margin-bottom: -50px;
  }
  .portland__location_inner .port_logo img {
    margin-bottom: 40px;
  }
  .portland__location_inner{
    flex-direction: column;    
  }  
  .portland__location_inner .port_logo,
   .portland__location_inner .desc__sec{
    width: 100%;
    max-width: 100%;
  }
  .inner__box {
    margin-right: 0px;
    margin-left: 0px;
    text-align: left;
  }
  .desc__inner_left {
      padding-top: 40px;
  }
}
@media screen and (max-width:991px) {
  .portland__location h2,
  a.phone_no{
      font-size: 25px;
  }
  .inner-box_wrap h3{
    font-size: 26px;
  }
}
@media screen and (max-width:767px) {
  .desc__inner{
    flex-direction: column;
  }
	.social-media__wrap ul{
		margin-left:0px;
	}
  .social-media__wrap ul,
  .port_logo>a,
  span.address-wrap,
  .inner-box_wrap strong,
  a.phone_no{
    justify-content: center;
  }
  .portland__location h2,
  .list__items li{
    text-align: center;
  }
  .inner__box{
    width: 100%;
    max-width: 100%;
  }
  .portland__location_inner {
      margin-bottom: 0px;
  }
  .inner-box_wrap{
    min-width: 100%;
    text-align: center;
  }
  .portland__location h2{
    font-size: 26px;
  }
  a.phone_no,
  .inner-box_wrap h3 {
    font-size: 24px;
  }
  span.address-wrap {
    font-size: 18px;
  } 
  .btn__wrap{
    font-size: 16px;
  }
  .portland__location_inner .port_logo img {
    max-width: 290px;
  }
}

/* Header Footer HIDE */
.home-portlandvet-lending-page header,
.home-portlandvet-lending-page footer{
	display:none;
}
.home-portlandvet-lending-page section {
    padding-top: 40px;
    padding-bottom: 40px;
}
a.directionbtn {
	display:inline-flex;
    text-decoration: none;
}
a.directionbtn:hover strong{
	color:#e47238;
}

/* Custom form style start */
section.landing_s2.custom-form-wrapper {
  min-height: calc(60vh);
}
.custom-form-wrapper .gform-theme--framework .gfield input, .gform-theme--framework .gfield select {
    line-height: 1.5 !important;
}
.custom-form-wrapper .gform-field-label {
    color: #112337 !important;
    font-size: 14px !important;
    font-family: Montserrat, sans-serif !important;
    font-weight: 500 !important;
}
.custom-form-wrapper  .gform-theme--framework:where(:not(.gform_editor)) .gfield--type-section {
    border-block-end: var(--gf-field-section-border-width) var(--gf-field-section-border-style) #e47238;
    padding-bottom: 0px !important;
    margin-bottom: 20px !important;
}
.custom-form-wrapper .gform-theme--framework .gfield input[type="radio"] {
    padding: 9px 9px !important;
    box-sizing: border-box !important;
}
.custom-form-wrapper h3.gsection_title {
	margin-top:30px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    font-family: Montserrat, sans-serif !important;
}
.custom-form-wrapper .gform-theme--foundation .gfield textarea.medium {
    border-radius: 20px;
    resize: none;
}
.custom-form-wrapper .gform-theme--foundation .gfield textarea.medium:focus{
	outline:none !important;
}
.landing_banner.inner-page--banner {
    min-height: unset;
	overflow:hidden;
}
.custom-form-wrapper .gform-theme--framework .gfield:where(:not(.gfield--type-html):not(.gfield--type-section)) {
    margin-bottom: 10px;
}
.custom-form-wrapper #field_7_48 h3.gsection_title {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 30px;
}
.custom-form-wrapper .gform-theme--framework .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))#field_7_58,
.custom-form-wrapper .gform-theme--framework .gfield:where(:not(.gfield--type-html):not(.gfield--type-section))#field_7_59{
    margin-bottom: 0px !important;
}
.custom-form-wrapper  .gfield--type-signature label.gfield_label.gform-field-label {
    margin-top: 0px !important;
}
/* header button removed style */
.page-id-160 .hdr-right a {
    display: none;
}
@media (max-width:767px){
	.custom-form-wrapper .gform-theme--foundation .gfield .ginput_password.medium,
	.custom-form-wrapper .gform-theme--foundation .gfield input.medium,
	.custom-form-wrapper .gform-theme--foundation .gfield select.medium {
		inline-size: calc(100%) !important;
	}	
 	.custom-form-wrapper .gform-field-label {
 		display:inline !important;
	}
	
	.custom-form-wrapper textarea,
	.custom-form-wrapper .ginput_container_select {
		margin-top: 6px !important;
	} 
	.custom-form-wrapper .gform-field-label span.gfield_required {
		padding-left: 1px;
	}
	.custom-form-wrapper .gfield--type-signature label,
	.custom-form-wrapper .gfield--type-date label, 
	.custom-form-wrapper .gfield--type-email label, 
	.custom-form-wrapper .gfield--type-text label, 
	.custom-form-wrapper .gfield--type-phone label, 
	.custom-form-wrapper .gfield--type-address label {
		margin-top: 10px !important;
		display: flex !important;
	}
	.custom-form-wrapper h3.gsection_title {
		font-size: 16px;
	}
	.custom-form-wrapper #field_7_48 h3.gsection_title {
		font-size: 14px;
	}
	.custom-form-wrapper .gfield--type-signature label.gfield_label.gform-field-label {
		margin-top: 0px !important;
	}
}
