.heading {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
    margin-top: 5rem;
    margin-bottom: 2rem;

}  


.heading span {
    color: var(--main-color);
    text-transform: uppercase;
    border-bottom: none;
    padding: 10px;
    margin-top: 20px;

}

.about {
    margin-top: 70px;
}

.about h1 {
    font-size: 45px;
}

h1:hover {
    color: #d3ad7f;

}
h1 span:hover{
    color: white;
}

.about .row  {
    display: flex;
    align-items: center; 
    justify-content: center;
    background: var(--black);
    flex-wrap: wrap; 
    
}

.about .row {
    display: flex;
    align-items: center; 
    justify-content: center;
    background: var(--black);
    flex-wrap: wrap; 
    
}

.about .row img {
    flex:1 1 45rem;
}

.about .row img {
    width:auto;
    height:auto;

}
.about .row img:hover{
    transform: scale(1.1);

}

.about .row .content {
    flex: 1 1 45rem;
    padding:2rem;

}

.about .row .content h3 {
    padding-left: 15px;
    font-size: 3rem;
    color: #c7a163;
}

.content h3 {
    margin-bottom: 15px;
}

.about .row .content p {
    font-size:1.6rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
    text-align: start;
    max-width: none;
    padding-right: 5px;
    margin-bottom: 15px;


}
/* .btn {
    margin-top: 1rem;
    padding: 2rem 5rem;
    font-size: 2rem;
    color: #0c0c0c;
    font-weight: 600;
    background: var(--main-color);
    cursor: pointer;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 15px;
}

.btn:hover {
    background:white;
} */
/* From Uiverse.io by Saad3092003 */ 
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
  }
  
  button.learn-more {
    width: 23rem;
    height: auto;
    margin-left: 10px;
  }
  
  button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    box-shadow: 0 0 5px 1px white;
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #2b2b2f;
    border-radius: 1.625rem;
  }
  
  button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }
  
  button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
  }
  
  button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #f0e8e8;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
  }
  
  button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: rgb(235, 230, 230);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
  }
  
  button:hover .circle {
    width: 100%;
    box-shadow: 0 0 10px 2px rgb(0, 0, 0);
  }
  
  button:hover .button-text {
    transform: translate(-1.7rem, 0);
  }
  
  button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(8.7rem, 0);
  }
  
  button:active .circle .icon.arrow {
    transform: translate(9.5rem, 0);
    transition: all 0.3s;
  }
  
  button:active .circle {
    transform: scale(0.9);
    transition: all 0.3s;
    box-shadow: 0 0 5px 0.5px rgb(214, 209, 209);
  }
  
  button:hover .button-text {
    color: #fff;
  }
  
  button:active .button-text {
    color: rgba(255, 255, 255, 0.459);
  }


  
@media (max-width: 991px) {
    .about .row img {
        height: auto;
    }

    .about .row .content {
        text-align: center;
    }

    .about h1 {
        font-size: 1.9rempx;
    }

    .heading{
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 3rem;
    }

    .about h1 {
        font-size: 30px;
    }

    .about .row img {
        display: none;
    }

    .about .row .content {
        padding: 1rem;
    }

    .about .row .content h3 {
        font-size: 2.5rem;
    }

    .about .row .content p {
        font-size: 1.4rem;
    }
}

@media (max-width: 450px) {
    .heading {
        font-size: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .about h1 {
        font-size: 25px;
    }

    .about .row .content h3 {
        font-size: 2rem;
    }

    .about .row .content p {
        font-size: 1.2rem;
    }

    .btn {
        padding: 1rem 3rem;
        font-size: 1.6rem;
    }
}


