/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Global Variables */
:root {
    --headingFont: 'Roboto', sans-serif;
    --paraFont: 'DM Sans', sans-serif;
    --headingColor: #00133E;
    --textColor: #36454F;
    --grad1: #be0e92;
    --grad2: #3e41e7;
    --shadow: 0px 0px 54px -26px rgb(82 82 82 / 50%);
    --bgColor: linear-gradient(30deg, var(--grad1), var(--grad2) 100%);
}

/* Global Classes */
.padding {
    padding: 120px 8.5%;
}

/* Padding for Other Devices */
@media only screen and (max-width: 600px) {
    .padding {
        padding: 55px 4%;
    }
}

/* Center Text */
.center {
    text-align: center;
}

/* Theme Button Design */
.glob-btn {
    background-image: linear-gradient(30deg, var(--grad1), var(--grad2) 100%);
    padding: 12px 15px;
    color: white;
    border-radius: 4px;
    border-top-right-radius: 0;
    font-family: var(--paraFont);
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
}

.glob-btn i {
    background-color: rgba(219, 147, 248, 0.466);
    width: 25px;
    height: 25px;
    text-align: center;
    margin-left: 5px;
    line-height: 25px;
    font-size: 12px;
    border-radius: 3px;
    border-top-right-radius: 0;
}

.glob-btn:hover i {
    animation: ArrowMove 0.25s;
    color: var(--grad1);
}

@keyframes ArrowMove {
    0% {
        transform: translateX(30%);
    }

    50% {
        opacity: 0;
        transform: translateX(-30%);
    }

    100% {
        opacity: 1;
    }
}

/* Scroll Reveal Start */
@keyframes scrollReveal {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: scrollReveal 2s ease-in-out;
}

h1,
.right-col {
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-name: slide-in;
}

h2,
p {
    animation: fadeIn 2s ease-in;
}

h3 {
    animation: smoothAppear 2s ease;
}

/*@keyframes slide-in {
    from {
        transform: translateX(150vw) scale(2, 1);
    }

    to {
        transform: translateX(0) scale(1, 1);
    }
}*/

@keyframes fadeIn {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%
    }
}

@keyframes smoothAppear {
    from {
        transform: translateY(100vh);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Scroll Reveal End */

/* Top Bar Start */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10%;
    padding: 10px 30px;
    background-image: var(--bgColor);
    border-radius: 10px;
    position: relative;
    z-index: 5;
}

.top-bar .cont-info {
    display: flex;
    gap: 20px;
}

.top-bar .cont-info p {
    color: whitesmoke;
    font-family: var(--paraFont);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .5px;
}

.top-bar .cont-info p i {
    margin-right: 5px;
}

.top-bar .cont-info p a {
    text-decoration: none;
    color: #c9a1ee;
}

.top-bar .cont-info p a:hover {
    color: whitesmoke;
    transition: 400ms;
}

.top-bar .social-icon {
    display: flex;
    gap: 10px;
}

.top-bar .social-icon a {
    color: whitesmoke;
    border: 1px solid whitesmoke;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    transition: 0.8s;
}

.top-bar .social-icon a:hover {
    background-color: whitesmoke;
    color: var(--grad2);
}

/* Responsive View */
@media only screen and (max-width: 650px) {
    .top-bar {
        margin: 0 1%;
    }
}

@media only screen and (max-width: 520px) {
    .top-bar {
        display: none;
    }
}

/* Top Bar End */

/* Header Section Start */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: var(--shadow);
    margin: 0 9%;
    padding: 15px 25px;
    border-radius: 10px;
    /* Changed from Sticky to relative for testing */
    position: sticky;
    top: 0;
    z-index: 999;
}

header .logo img {
    width: 180px;
}

header nav ul li {
    list-style: none;
    display: inline-block;
    padding: 0 10px;
}

header nav ul li a {
    display: inline !important;
    color: var(--textColor);
    text-decoration: none;
    font-family: var(--paraFont);
    font-weight: 500;
    font-size: 16px;
    transition: 0.7s;
}

header nav ul li a:hover {
    color: var(--grad2);
}

header nav ul li .active {
    color: var(--grad2);
}

#MenuBtn {
    display: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 30%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--textColor);
    border-radius: 4px;
    border-top-right-radius: 4px;
    background: var(--bgColor);
    font-size: 22px;
    color: white;
    text-align: center;
    line-height: 39px;
    cursor: pointer;
}

#call-toaction {

    opacity: .5;
}

/* Responsive View */

@media only screen and (max-width: 780px) {
    #MenuBtn {
        display: block;
    }

    header nav ul {
        position: absolute;
        top: 95px;
        right: 0;
        width: 250px;
        height: 0px;
        overflow: hidden;
        border: 0px solid var(--textColor);
        background-color: whitesmoke;
        border-radius: 4px;
        border-top-right-radius: 0;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        text-align: center;
        transition: 0.4s;
    }

    header nav ul li {
        display: block;
        margin: 25px 0;
        padding: 0;
    }

    /* UL Toggle Class */
    .open-menu {
        height: auto;
        border: 1px solid var(--textColor);
    }
}

/* Header Section End */

/* Main Home Section Start */
#home {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: -140px;
    /* Top Right Bottom Left */
    padding: 70px 30px 70px 9%;
}

#home video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#home::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url();
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 2;
}

#home .home-row {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    gap: 20px;
    position: relative;
    z-index: 5;
}

#home .home-row .left-col {
    flex-basis: 50%;
}

#home .home-row .left-col h3 {
    color: whitesmoke;
    font-family: var(--headingFont);
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
}

#home .home-row .left-col h1 {
    color: whitesmoke;
    font-family: var(--headingFont);
    font-size: 45px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 60px;
    margin: 15px 0;
}

#home .home-row .left-col p {
    color: whitesmoke;
    font-family: var(--paraFont);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
}

#home .home-row .right-col {
    height: 100%;
    flex-basis: 60%;
    background-image: url(../img/hero.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Responsive View */
@media only screen and (max-width: 780px) {
    #home .home-row .right-col {
        display: none;
    }

    #home .home-row .left-col {
        flex-basis: 100%;
    }
}

@media only screen and (max-width: 520px) {
    #home {
        padding: 100px 8%;
    }

    #home .home-row .left-col h3 {
        font-size: 16px;
        font-weight: 500;
    }

    #home .home-row .left-col h1 {
        font-size: 30px;
        line-height: 35px;
        margin: 12px 0;
    }

    #home .home-row .left-col p {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
}

/* Main Home Section End */

/* Feature Section Start */
#feature {
    background: url(../img/figsite_confetti.png);
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
}

/* Global Classes */
.sub-heading {
    font-family: var(--headingFont);
    font-weight: 700;
    color: var(--grad2);
    font-size: 20px;
}

.heading {
    font-family: var(--headingFont);
    font-size: 30px;
    font-weight: 700;
    color: var(--headingColor);
    margin: 5px 0;
}

.sub-para {
    color: var(--textColor);
    font-family: var(--paraFont);
    font-size: 16px;
    font-weight: 500;
}

/* End Global Classes */

#feature .feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin-top: 70px;
}

/* Box Design for Services */
.feature-box {
    text-align: center;
    display: grid;
    grid-template-rows: subgrid;
    grid-template-columns: subgrid;
    grid-row: span 3;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: white;
    padding: 1rem;
    box-shadow: var(--shadow);
    border-radius: 4px;
    border-top-right-radius: 0;
    z-index: 4;
}

.feature-box i {
    position: relative;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 27px;
    color: var(--grad2);
    border-radius: 4px;
    border-top-right-radius: 0;
    background-color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 20%);
    margin-top: -70px;
    z-index: 1;
    transition: 0.4s;
    margin-right: auto;
    margin-left: auto;
}

.feature-box i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--bgColor);
    border-radius: 4px;
    border-top-right-radius: 0;
    transition: 0.4s;
    z-index: -1;
}

.feature-box:hover i::after {
    height: 100%;
}

.feature-box:hover i {
    color: white;
}

.feature-box h3 {
    color: var(--headingColor);
    font-family: var(--headingFont);
    font-weight: 700;
    font-size: 22px;
}

.feature-box p {
    display: grid;
    grid-template-rows: subgrid !important;
    color: var(--textColor);
    font-family: var(--paraFont);
    font-size: 15px;
    font-weight: 500;
}

/* Responsive View */

@media only screen and (max-width: 780px) {
    #feature .feature-row {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
}

@media only screen and (max-width: 600px) {
    #feature .feature-row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
    }
}

/* Feature Section End */

/* About Us Section Start */
#about {
    position: relative;
    overflow: hidden;
}

#about::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: -20px;
    bottom: -50px;
    background-image: url(../img/figsite_about_background.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.15;
}

#about .about-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

#about .about-row .img-col {
    flex-basis: 45%;
    text-align: center;
}

#about .about-row .img-col img {
    width: 100%;
    border-radius: 5px;
    border-top-right-radius: 0;
}

#about .about-row .info-col {
    flex-basis: 55%;
}

#about .about-row .info-col .useful-links {
    margin-top: 30px;
}

#about .about-row .info-col .useful-links .filters {
    display: flex;
    gap: 30px;
}

#about .about-row .info-col .useful-links .filters button {
    background: white;
    color: var(--headingColor);
    border-radius: 4px;
    border-top-right-radius: 0;
    padding: 8px 15px;
    font-family: var(--paraFont);
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 20%);
    transition: 0.4s;
}

#about .about-row .info-col .useful-links .filters button:hover {
    background-color: var(--headingColor);
    color: white;
}

#about .about-row .info-col .useful-links .filters .active-btn {
    background-color: var(--headingColor);
    color: white;
}

#about .about-row .info-col .useful-links .filter-info {
    margin-top: 50px;
    margin-bottom: 15px;
    height: 170px;
    overflow-y: auto;
    transition: 0.2s;
}

#about .about-row .info-col .useful-links .filter-info p {
    color: var(--textColor);
    font-family: var(--paraFont);
    font-size: 15px;
    font-weight: 400;
}

#about .about-row .info-col .useful-links .filter-info .icon-list {
    margin-top: 30px;
}

#about .about-row .info-col .useful-links .filter-info .icon-list p {
    font-weight: 500;
    margin: 5px 0;
}

#about .about-row .info-col .useful-links .filter-info .icon-list p i {
    margin-right: 7px;
    color: var(--headingColor);
}

#Btn1Filter {
    display: block;
    opacity: 1;
}

#Btn2Filter {
    display: none;
    opacity: 0;
}

#Btn3Filter {
    display: none;
    opacity: 0;
}

/* Responsive View */

@media only screen and (max-width: 1100px) {
    #about .about-row {
        gap: 20px;
        flex-direction: column;
    }

    #about .about-row .img-col img {
        width: 50%;
    }
}

@media only screen and (max-width: 600px) {
    #about .about-row .img-col img {
        width: 90%;
    }
}

@media only screen and (max-width: 450px) {
    #about .about-row .info-col .useful-links .filters {
        gap: 10%;
    }
}

@media only screen and (max-width: 320px) {
    #about .about-row .info-col .useful-links .filters {
        flex-direction: column;
    }

    #about .about-row .info-col .useful-links .filter-info {
        height: 190px;
    }
}

/* About Us Section End */

/* Services Section Start */
#service {
    background-color: #f5f6f9;
    position: relative;
    overflow: hidden;
}

#service::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: -20px;
    bottom: 0;
    background-image: url(../img/figsite_services.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.1;
}

#service::before {
    content: '';
    width: 70%;
    height: 100%;
    position: absolute;
    left: -20px;
    bottom: 0;
    background-image: url();
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;

}

#service .first-col {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

#service .second-col {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

/* Responsive View */
@media only screen and (max-width: 880px) {
    #service .first-col {
        grid-template-columns: 1fr;
        grid-gap: 60px;
    }

    #service .second-col {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }
}

@media only screen and (max-width: 700px) {
    #service .second-col {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
}

/* Services Section End */

/* Banner Section Start */
#banner {
    padding: 0 9%;
    background: url(../img/figsite_web_design.jpg);
    background-position: bottom right;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 30vh;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

#banner .cols {
    flex-basis: 50%;
}

#banner .cols h1 {
    font-family: var(--headingFont);
    font-size: 27px;
    font-weight: 700;
}

#banner .cols .phone-nu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#banner .cols .phone-nu .icon i {
    font-size: 40px;
}

#banner .cols .phone-nu .info strong {
    font-family: var(--headingFont);
    font-size: 20px;
    font-weight: 600;
}

#banner .cols .phone-nu .info p {
    font-family: var(--paraFont);
    font-size: 17px;
    font-weight: 400;
}

#banner .cols .phone-nu a {
    text-decoration: none;
    color: var(--bgColor);
}

/* Responsive View */
@media only screen and (max-width: 750px) {
    #banner {
        flex-direction: column;
        height: 50vh;
        gap: 20px;
        padding: 50px 5%;
        background-size: contain;
    }

    #banner .cols h1 {
        text-align: center;
    }
}

@media only screen and (max-width: 430px) {
    #banner .cols h1 {
        font-size: 20px;
        font-weight: 600;
    }
}

/* Banner Section End */

/* Project Section Start */
#portfolio {
    position: relative;
    overflow: hidden;
}

#portfolio::after {
    content: '';
    width: 70%;
    height: 100%;
    position: absolute;
    left: -20%;
    bottom: 0;
    background-image: url(../img/figsite_portfolio_business.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: -1;
}

#portfolio::before {
    content: '';
    width: 70%;
    height: 100%;
    position: absolute;
    right: -30%;
    top: 0;
    background-image: url(../img/figsite_ecommerce.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 1;
}

#portfolio .portfolio-row {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

#portfolio .portfolio-row .img-box {
    position: relative;
    border: 5px solid white;
    border-radius: 5px;
    border-top-right-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    z-index: 2;
    background-color: white;
}

#portfolio .portfolio-row .img-box .img {
    overflow: hidden;
    border-radius: 5px;
    border-top-right-radius: 0;
}

#portfolio .portfolio-row .img-box .img img {
    width: 100%;
}

#portfolio .portfolio-row .img-box .img-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--bgColor);
    overflow: hidden;
    border-radius: 5px;
    border-top-right-radius: 0px;
    transition: 0.4s;
}

#portfolio .portfolio-row .img-box .img-info h3 {
    font-family: var(--paraFont);
    font-weight: 600;
    font-size: 25px;
    color: white;
    font-style: italic;
}

#portfolio .portfolio-row .img-box .img-info h3+p+i {
    color: white;
    font-style: italic;
}

#portfolio .portfolio-row .img-box .img-info h3+p {
    color: whitesmoke;
    font-family: var(--paraFont);
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
}

#portfolio .portfolio-row .img-box .img-info h3+p+a {
    text-decoration: none;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    background-color: var(--headingColor);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#portfolio .portfolio-row .img-box:hover .img-info {
    height: 100%;
}

/*  Responsive View    */
@media only screen and (max-width: 925px) {
    #portfolio .portfolio-row {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
    }
}

@media only screen and (max-width: 733px) {
    #portfolio .portfolio-row {
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }
}

@media only screen and (max-width: 600px) {
    #portfolio .portfolio-row {
        margin-top: 10px;
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* Project Section End */

/* Team Section Start */
#team {
    background-color: #f2f6fd;
}

#team .team-row {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
}

#team .team-row .img-box {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    overflow: hidden;
    border: 5px solid white;
    border-radius: 5px;
    border-top-right-radius: 0;
    position: relative;
    background-color: white;
    box-shadow: var(--shadow);
}

#team .team-row .img-box .img {
    position: relative;
    overflow: hidden;
}

#team .team-row .img-box .img img {
    width: 100%;
}

#team .team-row .img-box .img .icons {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(0deg, #4279f19a, rgba(255, 255, 255, 0) 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 15px;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

#team .team-row .img-box .img .icons a {
    text-decoration: none;
    margin: 20px 0;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    color: var(--headingColor);
    line-height: 31px;
    font-size: 15px;
}

#team .team-row .img-box:hover .img .icons {
    bottom: 0;
    opacity: 1;
}

#team .team-row .img-box .img-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 10px;
    text-align: center;
}

#team .team-row .img-box .img-info h3 {
    font-family: var(--headingFont);
    font-size: 20px;
    font-weight: 700;
    color: var(--headingColor);
}

#team .team-row .img-box .img-info p {
    font-family: var(--paraFont);
    font-size: 15px;
    font-weight: 600;
    color: var(--headingColor);

}

/* Responsive View */
@media only screen and (max-width: 983px) {
    #team .team-row {
        margin-top: 50px;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 15px;
    }
}

@media only screen and (max-width: 692px) {
    #team .team-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 410px) {
    #team .team-row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }
}

/* Team Section End */

/* Contact Section Start */
#contact .contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#contact .contact-row .left-col {
    flex-basis: 50%;
}

#contact .contact-row .left-col .cont-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    margin-top: 30px;
    padding: 15px;
    box-shadow: 0 0 20px rgba(85, 133, 236, 0.698);
    border-radius: 5px;
    border-top-right-radius: 0;
}

#contact .contact-row .left-col .cont-box .icon i {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    color: var(--grad2);
    background-color: #cfdcf8;
    border-radius: 5px;
    border-top-right-radius: 0;
}

#contact .contact-row .left-col .cont-box .info h4 {
    font-family: var(--headingFont);
    font-size: 20px;
    font-weight: 600;
    color: var(--headingColor);
}

#contact .contact-row .left-col .cont-box .info p {
    font-family: var(--paraFont);
    font-size: 16px;
    font-weight: 500;
    color: var(--textColor);
}

#contact .contact-row .left-col .cont-box .info p a {
    text-decoration: none;
}

#contact .contact-row .left-col .cont-box .info p a:hover {
    color: var(--grad1);
}

#contact .contact-row .right-col {
    flex-basis: 50%;
    padding: 20px 35px;
    box-shadow: var(--shadow);
    background-color: white;
    border-radius: 5px;
    border-top-right-radius: 0;
}

#contact .contact-row .right-col form input,
textarea {
    display: block;
    width: 100%;
    margin: 20px 0;
    border: 2px solid lightgray;
    outline: none;
    background-color: #f2f6ff;
    padding: 7px 20px;
    font-family: var(--paraFont);
    font-weight: 500;
    font-size: 16px;
    border-radius: 7px;
    border-top-right-radius: 0;
    transition: 0.3s;
    resize: none;
}

#contact .contact-row .right-col form input:focus,
textarea:focus {
    border: 2px solid var(--grad2);
}

.btn {
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 5px;
    border-top-right-radius: 0;
    transform: scale(1.5);
}

.btn::after {
    content: '';
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--grad2);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.btn::before {
    content: '';
    background: linear-gradient(45deg,
            #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.btn:hover::before {
    opacity: 1;
}

.btn:active::after {
    background: transparent;
}

.btn:active {
    color: black;
    font-weight: bold;
}

/*
#contact .contact-row .right-col form input[type=submit]{
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
    background: var(--bgColor);
    border: none;
    color: white;
    cursor: pointer;
}
*/
/* Responsive View */
@media only screen and (max-width: 990px) {
    #contact .contact-row {
        flex-direction: column;
        margin: 0 08%;
    }
}

@media only screen and (max-width: 543px) {
    #contact .contact-row {
        flex-direction: column;
        margin: 0 2%;
    }
}

/* Contact Section End */

/* Footer Section Start */
footer {
    background: url(../img/figsite_footer_background.jpg);
    background-position: center;
    background-size: 300%;
    background-repeat: no-repeat;
    position: relative;
}

footer .footer-row {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1fr;
    grid-gap: 40px;
}

footer .footer-row .footer-col img {
    width: 200px;
}

footer .footer-row .footer-col p {
    color: whitesmoke;
    font-family: var(--paraFont);
    font-size: 15px;
    font-weight: 400;
    margin-top: 20px;
    letter-spacing: 0.4px;
}

footer .footer-row .footer-col h2 {
    color: whitesmoke;
    font-family: var(--headingFont);
    font-weight: 700;
    font-size: 20px;
}

footer .footer-row .footer-col .divider {
    width: auto;
    height: 3px;
    border-radius: 10px;
    background: var(--bgColor);
    margin: -30px 0;
}

footer .footer-row .footer-col .icon-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

footer .footer-row .footer-col .icon-list a {
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    color: whitesmoke;
    font-family: var(--paraFont);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: 0.4s;
}

footer .footer-row .footer-col .icon-list a:hover {
    color: var(--grad2);
    font-size: 18px;
}

footer .footer-row .footer-col .icon-list a i {
    color: var(--grad2);
    margin-right: 5px;
}

footer .footer-row .footer-col .icon-list a i:hover {
    color: var(--grad1);
    margin-left: 10px;
}

footer .credit {
    text-align: center;
    color: whitesmoke;
    margin-top: 5px;
    padding: 15px;
    background: var(--bgColor);
    border-radius: 5px;
    border-top-right-radius: 0;
    margin-top: 100px;
    margin-bottom: -70px;
}

footer .credit p {
    font-family: var(--paraFont);
    font-weight: 400;
    font-size: 17px;
}

footer .credit p a {
    color: black;
    font-weight: 700;
}

/* Responsive View */
@media only screen and (max-width: 883px) {
    footer .footer-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 10px;
    }
}

@media only screen and (max-width: 550px) {
    footer .footer-row {
        flex-direction: column;
        margin: 0 08%;
    }

    footer .footer-row .footer-col img {
        width: 100%;
    }

    footer .footer-row .footer-col .divider {
        margin: 0;
    }

    footer .footer-row .footer-col .icon-list {
        margin: 0;
        gap: 0;
    }
}

@media only screen and (max-width: 400px) {
    footer .footer-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin: 0;
    }

    footer .footer-row .footer-col .divider {
        margin: 0;
    }

    footer .footer-row .footer-col .icon-list {
        display: flex;
        margin: 0;
        gap: 0;
    }

    footer .credit {
        margin-top: 11rem;
    }
}

/* Footer Section End */