.certificateSec {
    .certificateWrap {
        padding-top: 10px;

        .eachCrtf {
            margin-bottom: 20px;

            .certificateCard {
                height: 100%;

                .crtfCardImg {
                    width: 100%;
                    height: 330px;
                    border: 1px solid #00000025;
                    border-radius: 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 20px;
                    background-color: #fff;

                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                    }

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }

                .crtfCardCont {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 15px 0 20px;
                    background-color: #fff;

                    .crtfTitle {
                        width: calc(100% - 50px);

                        a {
                            display: block;
                            width: 100%;
                            height: 100%;
                            font-size: 18px;
                            color: #000;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 2;
                            padding-right: 15px;
                            transition: all 0.3s;
                        }
                    }

                    .crtfBtn {
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        padding: 10px;
                        background-color: #C19A63;
                        border: 1px solid transparent;
                        transition: all 0.3s;

                        a {
                            display: block;
                            width: 100%;
                            height: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                                transition: all 0.3s;
                            }
                        }
                    }
                }

                &:hover {
                    .crtfCardCont {
                        .crtfTitle {
                            a {
                                color: #C19A63;
                            }
                        }

                        .crtfBtn {
                            background-color: #fff;
                            border-color: #C19A63;

                            a {
                                img {
                                    filter: brightness(0) saturate(100%) invert(65%) sepia(58%) saturate(286%) hue-rotate(356deg) brightness(86%) contrast(94%);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.getInTouchSec {
    &::before {
        display: none;
    }
}

/* Responsive */
@media (max-width: 1600px) {
    .certificateSec {
        .certificateWrap {
            .eachCrtf {
                .certificateCard {
                    .crtfCardCont {
                        .crtfTitle {
                            a {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1366px) {
    .certificateSec {
        .certificateWrap {
            .eachCrtf {
                .certificateCard {
                    .crtfCardImg {
                        height: 280px;
                    }

                    .crtfCardCont {
                        .crtfTitle {
                            width: calc(100% - 35px);

                            a {
                                font-size: 15px;
                            }
                        }

                        .crtfBtn {
                            width: 35px;
                            height: 35px;
                            padding: 6px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .certificateSec {
        .certificateWrap {
            .eachCrtf {
                .certificateCard {
                    .crtfCardCont {
                        padding: 10px 0;
                    }
                }
            }
        }
    }
}

@media (max-width: 767px) {
    .certificateSec {
        .pagination {
            margin-top: 0;
        }
    }
}


@media (min-width: 1921px) {
    .certificateSec {
        .certificateWrap {
            .eachCrtf {
                .certificateCard {
                    .crtfCardCont {
                        .crtfTitle {
                            a {
                               font-size: clamp(18px, 0.9vw, 20px);
                            }
                        }
                    }
                }
            }
        }
    }
}