/* common classes */
/* flex and grid */
.grid {
    display: grid;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.no-wrap {
    flex-wrap: nowrap;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.space-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-end {
    justify-content: end;
}

.grid-2 {
    grid-template-columns: auto auto;
}

.grid-3 {
    grid-template-columns: auto auto auto;
}

.grid-4 {
    grid-template-columns: auto auto auto auto;
}

.grid-5 {
    grid-template-columns: auto auto auto auto auto;
}

.grid-6 {
    grid-template-columns: auto auto auto auto auto auto;
}

.grid-8 {
    grid-template-columns: auto auto auto auto auto auto auto auto;
}

/* row-gap and column-gap css */

.gap-10 {
    gap: 10px 10px;
}

.gap-20 {
    gap: 20px 20px;
}

.gap-30 {
    gap: 30px 30px;
}

.gap-40 {
    gap: 40px 40px;
}

.gap-50 {
    gap: 50px 50px;
}

/* row-gap css */
.row-gap-10 {
    row-gap: 10px;
}

.row-gap-20 {
    row-gap: 20px;
}

.row-gap-30 {
    row-gap: 20px;
}

.row-gap-40 {
    row-gap: 40px;
}

.row-gap-50 {
    row-gap: 50px;
}

/* column-gap css */
.column-gap-10 {
    column-gap: 10px;
}

.column-gap-20 {
    column-gap: 20px;
}

.column-gap-30 {
    column-gap: 20px;
}

.column-gap-40 {
    column-gap: 40px;
}

.column-gap-50 {
    column-gap: 50px;
}

/*   margin top bottom css*/
.mtb {
    margin: 100px 0;
}

.mtb-10 {
    margin: 10px 0;
}

.mtb-20 {
    margin: 20px 0;
}

.mtb-30 {
    margin: 30px 0;
}

.mtb-40 {
    margin: 40px 0;
}

.mtb-50 {
    margin: 50px 0;
}

/*  margin top css*/
.mt-top {
    margin-top: 100px;
}

.mt-top-10 {
    margin-top: 10px;
}

.mt-top-20 {
    margin-top: 20px;
}

.mt-top-30 {
    margin-top: 30px;
}

.mt-top-40 {
    margin-top: 40px;
}

.mt-top-50 {
    margin-top: 50px;
}

/* margin bottom */
.mb-bottom {
    margin-bottom: 100px;
}

.mb-bottom-10 {
    margin-bottom: 10px;
}

.mb-bottom-20 {
    margin-bottom: 20px;
}

.mb-bottom-30 {
    margin-bottom: 30px;
}

.mb-bottom-40 {
    margin-bottom: 40px;
}

.mb-bottom-50 {
    margin-bottom: 50px;
}

.mb-bottom-50 {
    margin-bottom: 50px;
}

/* padding top bottom css */
.ptb {
    padding: 100px 0;
}

.ptb-10 {
    padding: 10px 0;
}

.ptb-20 {
    padding: 20px;
}

.ptb-30 {
    padding: 30px 0;
}

.ptb-40 {
    padding: 40px 0;
}

.ptb-50 {
    padding: 50px 0;
}

/* padding top */
.pt-top-10 {
    padding-top: 100px;
}

.pt-top {
    padding-top: 100px;
}

/* padding bottom */

.pb-bottom {
    padding-bottom: 100px;
}

.pb-botoom-10 {
    padding-bottom: 10px;
}

.pb-botoom-20 {
    padding-bottom: 30px;
}

.pb-botoom-30 {
    padding-bottom: 40px;
}

.pb-botoom-40 {
    padding-bottom: 50px;
}

.pb-botoom-50 {
    padding-bottom: 50px;
}

/*  border-radius css */

.roung-10 {
    border-radius: 10px;
}

.roung-20 {
    border-radius: 20px;
}

.roung-30 {
    border-radius: 30px;
}

.roung-40 {
    border-radius: 40px;
}

.roung-50 {
    border-radius: 50px;
}

.common-heading {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.common-heading h2 {
    position: relative;
}

.common-heading h2::after {
    content: '';
    width: 250px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 10px;
    /* background: #56e69b; */
    background: linear-gradient(45deg, #56e69b, #fdde6a);
    position: absolute;
    bottom: -40px;
    border-radius: 30px;
}

/* mobile-button css */
.mobile-button {
    display: none;
}

/* common section css */
.accordion-common .at-tab {
    display: none;
    padding: 15px;

}

.accordion-common .at-title {
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid #ddd;
}

.accordion-common .at-title:hover {
    background-color: #e0e0e0;
}

.accordion-common .at-title:after {
    content: "+";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    transition: all 0.3s ease;
    font-size: 24px;
}

.accordion-common .at-title.active:after {
    content: "-";
}

.accordion-common .at-item {
    border-radius: 5px;
}

.accordion-common .at-item:nth-last-of-type(1) .at-title {
    border-bottom: none;
}

.accordion-common .at-title .tittle-name {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    margin: 0;
}

.accordion-common .accordion-header {
    text-align: center;
    background-color: #222222;
    color: white;
    padding: 20px 0;
}

.accordion-common .at-tab h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.accordion-common .at-tab p {
    font-size: 15px;
    list-style: 1.6;
    margin-bottom: 20px;
}

.accordion-common .at-tab ul {
    padding-left: 30px;
}

.accordion-common .at-tab ul li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    list-style: disc;
}

/* social icons */
.social-icon ul li:not(:nth-last-of-type(1)) {
    margin-right: 16px;
}

.social-icon ul li a i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.social-icon ul li a i.fa-facebook {
    background-color: #0d8af0;
}

.social-icon ul li a i.fa-pinterest{
    background-color: #e60023;
}

.social-icon ul li a i.fa-instagram {
    background-color: #df167a;
}

.social-icon ul li a i.fa-linkedin {
    background-color: #0077b5;
}

.social-icon ul li a i.fa-whatsapp {
    background-color: #27d045;
}

.copyright {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 10px 0 0;
    padding: 15px 0;
    border-top: 1px solid #ddd;
}

/* about-sec css */
.about-sec .col {
    width: 40%;
}

.about-sec .col img {
    width: 75%;
    height: 356px;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: cover;
}

.about-sec .col:nth-of-type(2) {
    width: 60%;
}

.about-sec ul {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.my-info li {
    width: 50%;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

.my-info li span {
    font-weight: 700;
    margin-right: 10px;
}

.my-info li p {
    font-weight: 500;
}

/* counter css */
.counter {
    padding: 70px 0 0;
}

.counter .counter-col {
    text-align: center;
}

.counter .counter-col h4 {
    font-size: 50px;
    line-height: 1.3;
    font-weight: normal;
}

/* form-wrapper css */
.form-wrapper textarea {
    height: 100px;
    resize: vertical;
}

/* development-banner css */
.development-banner h1 {
    color: #fff;
    font-size: 38px;
    line-height: 1.6;
}

.development-banner .row {
    padding: 200px 0 100px;
    z-index: 1;
}

.development-banner .row .col-half img {
    border-radius: 20px;
}

/* development-sec css */
.development-sec .col-half img {
    border-radius: 20px;
}

.development-sec .row .col-3 {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 40px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.development-sec .row .col-3::after,
.development-sec .row .col-3::before {
    content: "";
    width: 51%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -50%;
    background-color: #52f59d;
    border-radius: 30px 0 0 30px;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.development-sec .row .col-3::before {
    left: auto;
    right: -50%;
    border-radius: 0 30px 30px 0;
}

.development-sec .row .col-3:hover::after {
    left: 0;
}

.development-sec .row .col-3:hover::before {
    right: 0;
}

.development-sec .row .col-3 h3 {
    margin: 16px 0;
}

.development-sec .row .col-3 .icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.development-sec .row .col-3 p {
    margin-bottom: 16px;
}

.development-sec .white-btn {
    border: 1px solid #000;
}

.fixed-bg-sec {
    padding: 150px 0;
    background-attachment: fixed;
}

.fixed-bg-sec .common-heading {
    position: relative;
    z-index: 1;
}

.fixed-bg-sec .common-heading h2,
.fixed-bg-sec .common-heading p {
    color: #fff;
}

.fixed-bg-sec .common-heading {
    max-width: 700px;
    margin: 0 auto;
}

.fixed-bg-sec .common-heading a {
    margin-top: 20px;
}