:root {
    --primary-color: rgba(0, 50, 99, 1); 
    --secondary-color: rgba(174, 48, 81, 1); 
    --font-size: 18px;
    --primary-font: "Inter", sans-serif;

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


#faxSection { 
    color: var(--primary-color);
    font-family: var(--primary-font);
  
      
*{
box-sizing: border-box; 

    }
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 15px; 
    color: var(--primary-color);
    font-weight: 400;
}

.full-section{
    padding: 70px 0;
}
  
    .container {
    max-width: 862px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
/*  */
.pageHeading {
    margin-bottom: 64px;
    text-align: center;
}
.pageHeading h5 {
    font-size: 30px;
    font-weight: 600;
    line-height: 29.49px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.pageHeading h2 {
    font-size: 62px;
    font-weight: 700;
    line-height: 68.2px;
    letter-spacing: -0.01em;
}
/*  */
.sectionHeading {
    text-align: center;
}
.sectionHeading  h2 {
    font-size: 36px; 
    line-height: 46.8px;
    letter-spacing: -0.01em;  
    display: inline-block;
}
.sectionHeading  h2 span{ 
    display: block;
    border-bottom: 4px solid rgba(0, 50, 99, 1);
    font-weight: 700;
}
.sectionHeading {
    margin-bottom: 50px;
}
.accordionBlock {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.accordion-item {
    border-radius: 8.5px;
    background-color: rgba(242, 241, 242, 1);
    padding: 20px 29px;
    margin-bottom: 15px;
}
.accordion-Title {
    font-size: 17px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.03em;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}
.accordion-Title:after {
    content: "";
    background-image: url(../img/arrow-icon.svg);
    width: 15.18px;
    height: 15.18px;
    position: absolute;
    right: 0;
    top: 7px;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s;
}
.active .accordion-Title:after {
   transform: rotate(-180deg);
}
.accordionContent {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.03em;
    overflow: hidden;
    min-height: 0;
    height: 0;
    transition: 0.5s;
}
.active .accordionContent {
    min-height: 30px;
    overflow: auto;
    height: auto;
    padding-top: 20px;
}

.searchForm {
background: linear-gradient(180deg, #178CF9 0%, #0E5393 130.36%);
    min-width: 500px;
    border: 1px solid rgba(193, 193, 191, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 30.5px 37.5px;
    border-radius: 22px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
    max-width: 650px;
}
 .searchForm  .form-select {
    border: 1px solid rgba(193, 193, 191, 1);
    height: 64px;
    padding: 8.5px 24px;
    width: 100%;
    border-radius: 11px;
    color: rgba(46, 47, 51, 1);
    font-size: 20px;
    -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

}
 .selectForm{   position: relative;}
   .selectForm:before{ 
    content: "";
    background: linear-gradient(180deg, #AE3051 1.73%, #8C1837 54.23%);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    position: absolute;
    right: 15.5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
	   z-index: 1;
  }
   .selectForm:after  {
    content: "";
    background-image: url(../img/arrow-icon.svg); 
    width: 44px;
    height: 44px; 
    position: absolute;
    right: 15.5px;
    top: 50%;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.5s;
    filter: brightness(0) invert(1);
    transform: translateY(-50%);
    pointer-events: none;
	   z-index: 1;
  }
  select:focus-visible {
    outline: none;
   border:1px solid var(--secondary-color);
   box-shadow: 0 0 5px 1px var(--secondary-color)  inset;

  }
 
.active  .accordionContent { display: block; }


/* -------------------------------------------------------- */
.custom-select { 
  border: 1px solid rgba(193, 193, 191, 1);
/*     min-height: 64px; */
/*     padding: 8.5px 24px; */
    width: 100%;
    border-radius: 11px;
    color: rgba(46, 47, 51, 1);
    font-size: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  position: relative;
	background-color: #fff;
}
.custom-select .selected {
        display: flex;
    align-items: center;
    line-height: normal;
    padding: 8.5px 58px 8.5px 24px;
    min-height: 64px;
}

div.selected > .text:focus-visible {
    outline: none;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 5px 1px var(--secondary-color) inset;
}

div.select-box
{
  display: none;
  width: 100%;
  z-index: 10029;
  position: absolute;
  border-radius: 3px;
  box-shadow: 0 8px 20px #000000;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
	    background-color: #fff;
	border: 1px solid rgba(193, 193, 191, 1);
}

div.select-box.active
{
  display: block;
}

/* div.select-box.drop-up
{
  top: auto;
  bottom: 100%;
} */

ul.select-list
{
  margin: 0;
  list-style-type: none;
}

ul.select-list li
{
cursor: pointer;
/*     overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; */
    padding: 6px 20px;
}

ul.select-list li:hover,
ul.select-list li.active
{
  background-color: #00000017;
}




@media (min-width: 320px) and (max-width: 767px){
    .pageHeading h2 {
        font-size: 36px; 
        line-height: 42px; 
    } 
    .pageHeading h5 {
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .pageHeading {
        margin-bottom: 30px; 
    }
    .searchForm { 
        margin-bottom: 30px;
        padding: 20px 25px;
        border-radius: 15px; 
            min-width: inherit; 
    }
    .searchForm .form-select { 
        height: 50px;
        padding: 5px 15px;
        border-radius: 12px;
        font-size: 18px;
    }
    .selectForm:before {
        width: 34px;
        height: 34px;
        border-radius: 5px;
        right: 10px; 
    }
    .selectForm:after {
        width: 34px;
        height: 34px;
        right: 10px;
    }
    .sectionHeading {
        margin-bottom: 25px;
    }
 

}



/* Custom Dropdown Styles */
.custom-select {
    position: relative;
    width: 100%;
}

/* .selected {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.select-box {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 99;
    background-color: #fff;
    border: 1px solid #ccc;
    display: none;
}

.select-box.open {
    display: block;
}

.select-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* .select-list li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
} */

.select-list li:hover {
    background-color: #f5f5f5;
}

/* .select-list .selected-option {
    font-weight: bold;
} */

/* .select-list li.selected-option {
    color: #999;
} */

}