body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    color: #666;
    font-size: 15px;
    font-weight: 400;
        width: 100%;
    height: 100%;
  
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-x: hidden;
}
html {
    font-size: 100%;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
    touch-action: manipulation;
}
.main-area-wrapper {
    height: 100%;
    padding: 30px;
}

.main-area {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 0 20px;
    background-size: cover;
    box-shadow: 2px 5px 30px rgba(0,0,0,.3);
    color: #fff;
}

.cols {
    display: inline-block;
    float: none;
    width: 45%;
}
.display-table {
    display: table;
    height: 100%;
    width: 100%;
}
.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}
.logo-feed.text-center a {
  display: inline-block;
}
.not-active {
  display: none;
}
.inputGroup {
  /* background-color: #fff; */
    display: block;
  margin: 10px 10px;
  position: relative;
  display: inline-block;
  width: 40%;
  background: #194248;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 6px;
  overflow: hidden;
  border-top-right-radius: 6px;
}
.inputGroup label {
    padding: 20px 30px;
    width: auto;
    display: block;
    text-align: left;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 16px;
}
.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background-color: #b4a269;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.inputGroup label:after {
  width: 34px;
  height: 34px;
  content: '';
  border:0px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 5px 6px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}
.inputGroup input:checked ~ label {
 color: #fff;
}
.inputGroup input:checked ~ label:before {
 -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
 transform: translate(-50%, -50%) scale3d(56, 56, 1);
 opacity: 1;
}
.inputGroup input:checked ~ label:after {
 background-color: #194248;
 border-color: #194248;
}
.inputGroup input {
  width: 34px;
  height: 34px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}
.in-feed {
  display: block;
  background: #f5f5f5;
  padding: 20px;
  margin-top: 25px;
  border-radius: 6px;
  border: 1px solid #b1b1b1;
}
section.inner-banner.bg-color.feed-banner h2 {
    margin: 0 0 27px;
    font-size: 25px;
    padding: 20px;
    font-weight: 600;
    position: relative;
}
section.inner-banner.bg-color.feed-banner h2:after {
    position: absolute;
    content: "";
    width: 71px;
    height: 5px;
    background: #a12743;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
section.inner-banner.bg-color.feed-banner {
  min-height: 65px;
  clear: both;
}
code {
  background-color: #9AA3AC;
  padding: 0 8px;
}
.feedback-sect {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.feedback-sect p {
  display: inline-block;
  margin: 0 10px;
}
.in-feed h4 {
  font-size: 21px;
  font-weight: 600;
  color: #000;
}
/*  [type="radio"]:checked,
[type="radio"]:not(:checked) {
   position: absolute;
   left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
   position: relative;
   padding-left: 28px;
   cursor: pointer;
   line-height: 26px;
   display: inline-block;
   color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 25px;
   height: 25px;
   border: 1px solid #ddd;
   border-radius: 100%;
   background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
   content: '';
   width: 17px;
   height: 17px;
   background: #276972;
   position: absolute;
   top: 4px;
   left: 4px;
   border-radius: 100%;
   -webkit-transition: all 0.2s ease;
   transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
   opacity: 0;
   -webkit-transform: scale(0);
   transform: scale(0);
}
[type="radio"]:checked + label:after {
   opacity: 1;
   -webkit-transform: scale(1);
   transform: scale(1);
} */
.logo-feed img {
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 4px auto;
}
input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px\9;
    line-height: normal;
}

input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
input {
    line-height: normal;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}
.col-xs-12.logo-feed.text-center {
    text-align: center;
}
section.inner-banner.bg-color.feed-banner {
    min-height: auto;
    background: transparent;
    text-align: center;
    color: #a12743;
}

/* .container {
    max-width: 1170px;
        padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
} */


.feed-form [type="radio"]:checked,
.feed-form [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.feed-form [type="radio"]:checked + label,
.feed-form [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 29px;
    display: inline-block;
    color: #666;
}
.feed-form [type="radio"]:checked + label:before, .feed-form [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 27px;
    height: 27px;
    border: 1px solid #bdbdbd;
    border-radius: 100%;
    background: #fff;
}
.feed-form [type="radio"]:checked + label:after, .feed-form [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 19px;
    height: 19px;
    background: #266972;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.feed-form [type="radio"]:not(:checked) + label:after {
    opacity: 1;
   
    background: #a6a6a6;
}
.feed-form [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.sections {
    width: 100%;
    clear: both;
    float: left;
    margin-bottom: 15px;
    text-align: left;
}

.sections h4 {
    background: #266972;
    border-radius: 50px;
    color: #fff;
    text-align: left;
    padding: 13px 22px;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 12px;
    margin-top: 0;
    font-weight: normal;
}
.sections p label {
    font-size: 17px;
    letter-spacing: normal;
    color: #000 !important;
    font-weight: normal;
}
.sections.eq-clmns p {
    width: 16%;
    margin: 0;
}
.sections.eq-clmns textarea {
    outline: none;
    width: 100%;
    display: block;
    border-radius: 100px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    min-height: 100px;
    resize: vertical;
}

.sections.eq-clmns.sub-form input:nth-of-type(2) {
    margin-right: 0;
}
.sections.eq-clmns.sub-form input {
    width: 48.9999%;
    margin-right: 9px;
    border: 1px solid #cacaca;
    border-radius: 50px;
    padding: 10px 15px;
    height: 50px;
    margin-bottom: 15px;
    background: #f8f8f8;
    color: #000;
    font-size: 17px;
    outline: none;
}
.sections.eq-clmns.sub-form input[type="submit"] {
    background: #266972;
    color: #fff;
    height: auto;
    max-width: 140px;
    border: 0;
    padding: 13px 15px;
    cursor: pointer;
}
.sl-box{
margin-bottom: 20px;
text-align: right;
}

.sl-box select {
    border: 1px solid #bfbfbf;
    height: 50px;
    box-shadow: none;
    outline: none;
    background: #fff;
    border: 0;
    color: #2f2f2f;
    font-weight: 500;
}

.sl-box button {
    border: 0;
    background: #a12743;
    padding: 10px 25px;
    height: 50px;
    border-radius: 5px;
    outline: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    margin: 0 auto;
    display: inline-block;
    line-height: 32px;
}

.col-xs-12.sl-box.text-center{
  text-align: center;
}

.logo-feed.text-center {
    text-align: center;
    margin-bottom: 30px;
}

section.inner-content-area.feedback-sect .container{
      max-width: 500px;
    text-align: center;
}

@media(max-width: 991px){
  .sections p label {
    font-size: 16px;
  
}
.inputGroup {
    width: 93%;
}
.feed-form [type="radio"]:checked + label, .feed-form [type="radio"]:not(:checked) + label {

    padding-left: 33px;
  
}
}
@media(max-width: 767px){

.sections.eq-clmns p {
    width: 31.333333%;
    margin: 0 0 5px 0px;
}
.sections.eq-clmns.sub-form input{
    width: 100%;
    margin-right: 0px;
   
}
.sections.eq-clmns.txt h4 {
    line-height: 1.333;
    letter-spacing: .53px;
}
}
@media(max-width: 555px){
.cols {
    display: inline-block;
    float: none;
    width: 90%;
}
section.inner-banner.bg-color.feed-banner h2 {
    margin: 0 0;
    font-size: 20px;
    padding: 14px 7px;
}
.sections h4 {
   
    font-size: 16px;
    
}
}

@media(max-width: 400px){
.logo-feed img {
    max-width: 200px;
   
}
a.head-vps img {
    width: 60px;
}
.sections.eq-clmns p {
    width: 48%;
    margin: 0 0 5px 0px;
}
.feedback-sect p {
  
    width: 100%;
}
}