.dytrcrds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    row-gap: 35px;
}

.dytrcrd {
    display: flex;
    height: 100%;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: background-color 0.3s, transform 0.3s;
    overflow: hidden;
}

.dytrcrd:hover>.dytrcrdimg span {
    position: absolute;
    transform: translate(-50%, -10px);
    left: 50%;
    bottom: 10px;
    padding: 6px 10px;
    background: var(--btn-bg);
    color: var(--btn-primary-text);
    font-weight: 400;
    border-radius: 5px;
    letter-spacing: .6px;
    font-size: 14px;
}

.dytrcrdimg {
    flex: 0 0 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dytrcrdimg img {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.dytrdtls {
    padding: 15px 10px 15px 15px;
}

.dytrdtls h3 {
    padding-bottom: 20px;
}

.dytrdtls p {
    display: block;
    padding-bottom: 10px;
}

.dytrcprce {
    display: flex;
    align-items: center;
}

.dytrcprce span:first-child {
    font-size: 15px;
    padding-right: 2px;
    font-weight: 500;
}

.dytrcprce span:nth-child(2) {
    font-size: 25px;
    font-weight: 600;
}

.dytrcprce span:last-child {
    font-size: 14px;
    margin-left: 5px;
    font-weight: 500;
}
#trhglts ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    row-gap: 35px;
}
#trhglts ul li {
    display: flex;
    flex-direction: column;
}
#trhglts ul li span:first-child {
    font-size: 17px;
    font-weight: 600;
}
.dyrpitne{
    position: relative;
}
.dyrpitne::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 9px;
    width: 4px;
    height: calc(100% - 20px);
    border-left: 2px dotted var(--text-muted);
}
.dyrpitne h3{
    padding: 10px 0px 5px 30px;
    display: flex;
    align-items: center;
    position: relative;
}
.dyrpitne h3::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fefefe;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    left: 0;
}
.dyrpitne span:not(:first-child) {
    padding: 15px 0px 3px;
}
.dyrpitne p{
    display: block;
    padding-left: 30px;
}
.dyrtpopt{
    margin: 20px 0px 20px;
}
.dyrtpopt h3{
    margin-bottom: 5px;
}
.dyrtpopt ul li{
    margin-left: 20px;
}
.dyrtpopt ul li:not(:last-child) {
    margin-bottom: 5px;
}
.dyrtpopt ul li span{
    font-weight: 600;
}
.dyrtpopt ul li a{
    text-decoration: none;
    color: var(--color-accent);
}
.othdytrps{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    row-gap: 20px;
}
.othdyrtpcd{
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}
.othdytrimg{
    height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 0;
}
.othdytrimg img{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    object-fit: cover;
    z-index: -1;
}
.othdytrimg h3{
    color: var(--color-white);
    padding: 0px 10px 15px;
}
.othdytrdtls{
    padding: 10px 15px 18px;
}
.othdyrpc{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.othdyrids{
    display: flex;
    align-items: center;
}
.othdyrids span:first-child{
    font-size: 15px;
    padding-right: 2px;
}
.othdyrids span:nth-child(2){
    font-size: 25px;
    font-weight: 600;
}
.othdyrids span:last-child{
    font-size: 15px;
    padding-left: 5px;
}
.othdyrprbtn{
    line-height: 16px;
    padding-top: 5px;
}
.othdyrprbtn > span{
    font-size: 14px;
}
.othdyrpc a{
    padding: 8px 10px;
    background: var(--btn-primary-bg);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: var(--btn-primary-text);
    cursor: pointer;
    transition: 0s;
    letter-spacing: .6px;
}
.othdyrpc a:hover {
    background: var(--btn-bg);
}