.abouttopsec{
    width: 100%;
    margin:0;
    padding:120px 0;
    overflow: hidden;
    background:#000 url(../../images/citybanner.webp) no-repeat center center;
    background-size: cover;
    position: relative;
}
.abouttopsec::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
}
.abouttopsec .container{
  position: relative;
  z-index: 1;
}
.abouttopsec h1{
  color: #fff;
}
.abouttopsec .shrtdesc p{
  color: #fff;
}
.titlesamll{
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: .5rem;
    color: #fff;
    font-family: var(--font-oswald);
}
.titleblck{
    display: block;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: .5rem;
    color: var(--primary-color);
    font-weight: 800;
    font-family: var(--font-oswald);
}
.titleblcklarge{
    display: block;
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 0rem;
    color: var(--primary-color);
    font-family: var(--font-oswald);
}
.abouttopsec .titlesnail{
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--primary-color);
}
.abouttopsec .shrtdesc p{
    font-size: 1rem;
    color: #fff;
}
.getquotebg{
    width: 100%;
    margin:0;
    padding:30px 0;
    overflow: hidden;
    background: #fff;
}
.getquotebg .getquoteinner{
    width: 767px;
    max-width: 100%;
    background: #f7f7f7;
    overflow: hidden;
    padding:15px 30px;
    box-sizing: border-box;
    border-top: 5px solid #212529;
    overflow: hidden;
    margin:0 auto;
    border-radius: 5px;
}
.getquotebg .infotext{
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}
.getquotebg input[type='text'],
.getquotebg input[type='email']{
    display: block;
    width: 100%;
    margin:0;
    padding:0 15px;
    box-sizing: border-box;
    border:0;
    text-shadow: none;
    background: #fff;
    line-height: 3.4rem;
    color: var(--primary-color);
    border: 1px solid rgba(101, 124, 180,0.3);
    margin-bottom: 1rem;
    font-size: 1rem;
    border-radius: 5px;
}
.getquotebg input[type='file']{
    display: block;
    width: 100%;
    margin:0;
    padding:10px 15px;
    box-sizing: border-box;
    border:0;
    text-shadow: none;
    background: #fff;
    line-height: 1.8;
    border: 1px solid rgba(101, 124, 180,0.3);
    border-radius: 5px;
}
.getquotebg textarea{
    display: block;
    width: 100%;
    margin:0;
    padding:10px 15px;
    box-sizing: border-box;
    border:0;
    text-shadow: none;
    background: #fff;
    line-height: 1.5;
    border: 1px solid rgba(101, 124, 180,0.3);
    border-radius: 5px;
}
.getquotebg input[type='submit'],
.sendrequestbg input[type='submit']{
    display: inline-block;
    margin-top: 15px;
    padding:0 25px;
    font-size: 1rem;
    font-weight: 500;
    border:none;
    line-height: 3.7rem;
    background: #121f32;
    border-left: 3px solid #3e557a;
    color: var(--whitecolor);
    text-shadow: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    float: right;
    border-radius: 5px;
}
.getquotebg input[type='submit']:hover,
.sendrequestbg input[type='submit']:hover{
    background: #3e557a;
    border-left: 3px solid #121f32;
}
.form-controls {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.0;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}

.form-controls + .form-controls {
  margin-top: 1em;
}

.form-controls:focus-within {
  color: var(--form-control-color);
}


.getquotebg input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.getquotebg input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

.getquotebg input[type=radio]:checked::before {
  transform: scale(1);
}

.getquotebg input[type=radio]:focus {
 /* outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);*/
}