.main-heading {
  width: 100%;
  height: auto;
  text-align: center;
}

.main-heading h1 {
  font-size: 55px;
  color: #1f2938;
}
.main-heading p {
  font-size: 17px;
  padding: 14px 0;
  color: #1f2938;
}
.main-box-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
}

.main-content-boxes{
    width: 48%;
    border: 1.5px solid rgb(220, 220, 220);
    padding: 20px;
    border-radius: 10px;
}

.main-content-boxes:hover{
    border: 1.5px solid rgb(214, 176, 230);
    margin-top: -5px;
    transition: .5s;
}

.box-content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.box-content-img-details-wrapper{
    display: flex;
    justify-content: center;
    gap: 16px;
}

.box-content-img{
    width: 52px;
    /*height: 52px;*/
    border-radius: 50%;
}

.box-content-img img{
    width: 52px;
    /*height: 52px;*/
}

.box-pera{
    width: 100%;
    padding: 25px 0;
}

.box-content-details-heading h2{
    font-size: 20px;
    margin: 0 0 0px!important;
    line-height: 22px!important;
}

.box-content-details-info{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.box-content-details-info span{
    font-size: 12px;
    color: gray;
}

.box-company-name {
    
    text-decoration: none;
    font-weight: 600;
}

.box-content-details-time span{
    font-size: 12px;
    color: gray;
}

.doller-price{
    font-size: 18px;
    font-weight: 700;
    color: #bd1014;
}

.box-pera{
    height: 216px;
    overflow-y:auto;
    margin-top:15px;
    margin-bottom:15px;
}

.box-pera p{
    font-size: 14px;
    line-height: 22px;
    
}

.box-btn-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.box-name-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.box-name-btn a{
    font-size: 12px;
   text-decoration: none;
   background-color: #ffcfc5;
   padding: 6px 10px;
   border-radius: 5px;
   color: black;
}

.box-icon-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: gray;
}

@media screen and (max-width: 992px) {
  .main-content-boxes {
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .box-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-content-boxes:hover {
    border: 1.5px solid rgb(214, 176, 230);
    margin-top: 0;
    transition: 0.5s;
  }

  .main-heading h1 {
    font-size: 35px;
   
  }
  .main-heading p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .box-content-details-heading h2 {
    font-size: 18px;
  }

  .main-content-boxes {
    width: 100%;
  }

  .main-heading h1 {
    font-size: 30px;
   
  }
  .main-heading p {
    font-size: 15px;
  }
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #bd1014; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 13px;
    width:100%;
}

input[type="button"], input[type="reset"], input[type="submit"] {
    border-radius: 0px 0px 0px 0px;
    color: #fff;
    background: #bb0b0b;
    line-height: 2;
    border-color: #bb0b0b;
    padding: 8px 30px 8px 30px!important;
}

.modal .modal-content .modal-body .row .col-md-6{
    text-align:center;
}

.modal .modal-content .modal-body .row .col-md-6.upload{
    text-align:left;
}

.modal .modal-content .modal-body .row .col-md-12 p{
    text-align:center;
}
.modal.show .modal-dialog {
    width: 100%;
    max-width: 739px!important;
}
    
.modal-header button{
    padding:5px!important;
    background:transparent;
}


