.tourism_video {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
}

.tourism_video>iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.tourism {
    --red: #FF0000;
    --gray: #EBEBEB;
    --black: #000000;
    --darkred: #AF0404;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.tourism .h2 {
    padding-bottom: 30px;
    background: url(../img/line.svg) center bottom no-repeat;
    margin: 40px 0 40px;
    text-align: center;
    font-size: 35px;
}

.tourism .h2 span {
    display: inline-block;
    padding-right: 1ch;
}

.tourism h4 {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 35px;
    font-size: 22px;
}

@media(max-width: 991px) {
    .tourism .h2 {
        font-size: 30px;
    }
    .tourism h4 {
        font-size: 20px;
    }
}

.tourism_about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5em;
    max-width: 1400px;
    text-align: justify;
}

.tourism_about div p {
    font-weight: 500;
    font-size: 18px;
}

.tourism_about span {
    font-weight: 700;
}

.tourism_about img {
    margin: auto;
    margin-bottom: 1em;
}

@media (max-width:500px) {
    .tourism_about {
        grid-template-columns: 1fr;
    }
}

.tourism-howto {
    max-width: 1140px;
    width: 100%;
    height: 100%;
    margin-bottom: 2.5em;
}

.tourism-steps {
    display: grid;
    /*! grid-template-rows: repeat(6, 1fr); */
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-gap: 40px;
    max-width: 1140px;
}

.tourism-steps>div {
    background-color: var(--gray);
    margin: auto;
    place-self: center;
    position: relative;
    padding: 1em 1em 2em 75px;
    text-align: left;
    height: 100%;
    display: grid;
    grid-template-areas: "header header""description img";
    /*! margin-top: 40px; */
    /*! grid-gap: 40px; */
    /*! grid-template-rows: min-content min-content; */
}

.tourism-steps>div>span {
    position: absolute;
    left: 0.125em;
    top: -0.05em;
    font-size: 65px;
    font-weight: 900;
    color: var(--red);
}

.tourism-steps>div>h5 {
    color: var(--red);
    font-weight: 700;
    font-size: 1.65em;
    grid-area: header;
    margin: -2px 0 18px;
}

.tourism-steps p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75em;
    grid-area: description;
    padding: 0;
}

.tourism-steps img {
    place-self: center;
    grid-area: img;
    margin: 0 2.5em;
}

@media(max-width:1199px) {
    .tourism-steps img {
        margin: 0 1em 0 1em;
    }
}

@media (max-width:991px) {
    .tourism-steps>div {
        padding: 0 0 1em 3em;
    }
}

@media (max-width:500px) {
    .tourism-steps>div {
        grid-template-areas: "header img""description description";
    }
}

.tourism_in-kh {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.5em;
    max-width: 1444px;
}

.tourism_in-kh div {
    display: grid;
    place-items: center;
    padding: 40px 29px 40px 74px;
    background-color: var(--gray);
}

.tourism_in-kh img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: right;
}

@media (max-width:1439px) {
    .tourism_in-kh img {
        display: none;
    }
    .tourism_in-kh {
        grid-template-columns: 1fr;
    }
}

.tourism_in-kh ul {
    padding-left: 2em;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
}

.tourism_in-kh span {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.tourism_in-kh a {
    appearance: button;
    border: 1px solid var(--red);
    border-radius: 50px;
    font-size: 18px;
    color: var(--red);
    font-weight: 600;
    text-align: center;
    line-height: 2.5em;
    width: 232px;
    height: 48px;
    text-decoration: none;
    cursor: pointer;
}

.tourism_in-kh a+a {
    margin-left: 1em;
}

.tourism_in-kh a:hover {
    background-color: var(--red);
    color: white;
}

@media (max-width:500px) {
    .tourism_in-kh>div {
        padding: 0 1em 2em 1em;
    }
    .tourism_in-kh span {
        flex-direction: column;
        align-items: center;
    }
    .tourism_in-kh a+a {
        margin-left: 0em;
        margin-top: 1em;
    }
}

.table-of-benefits {
    display: grid;
    grid-template-columns: repeat(6, auto);
    width: 100%;
    overflow-y: auto;
    max-width: min(1140px, 100vw);
}

.table-of-benefits>div {
    padding: 20px 20px 20px 40px;
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.table-of-benefits_header {
    background-color: red;
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.table-of-benefits_odd {
    background-color: var(--gray);
}

.table-of-benefits_col1 {
    text-align: left;
}

.table-of-benefits_in-mistodent {
    color: var(--darkred);
    font-weight: 600;
}

.table-of-benefits_benefit {
    color: var(--red);
    font-weight: 700;
}

.table-of-benefits>div:not(.table-of-benefits_col1) {
    text-align: center;
}

.table-of-benefits_value {
    min-width: 11ch;
    display: flex;
    justify-content: center;
}

.table-of-benefits_value::before {
    content: '$';
    margin-right: 0.25ch;
}

@media (max-width:1439px) {
    .table-of-benefits>div {
        padding: 1em 0.5em;
    }
}

.tourism-table-of-benefits__note {
    margin-top: 20px;
    margin-left: 70px;
    margin-bottom: 50px;
    color: var(--red);
    max-width: 1140px;
    width: 100%;
}

.tourism_pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0em;
    max-width: 1448px;
    width: 100%;
}

.tourism_pricing>div {
    width: 100%;
    position: relative;
    padding: 0em 0em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.tourism_pricing img {
    position: absolute;
    left: -1em;
    top: 0.5em;
    z-index: +1;
}

.tourism_pricing h4 {
    display: block;
    color: red;
    width: calc(100% - 2em);
    max-width: 100%;
    line-height: 88px;
    background-color: var(--gray);
    place-self: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.tourism_pricing>div>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-auto-flow: column;
    width: 100%;
    text-align: left;
    grid-row-gap: 10px;
}

.tourism_pricing>div span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.tourism_pricing strong {
    font-weight: 600;
}

@media (max-width:1749px) {
    .tourism_pricing {
        //grid-template-columns: 1fr;
        grid-gap: 1em;
        padding-left: 1.5em;
    }
    .tourism_pricing>div {
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }
    .tourism_pricing>div>div {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        width: auto;
    }
}

@media (max-width:1439px) {
    .tourism_pricing h4 {
        margin: 0 20px 30px 0;
        flex-basis: 35%;
        width: 100%;
    }
    .tourism_pricing>div>div,
    .tourism_pricing>div>span {
        flex-basis: 100%;
    }
    .tourism_pricing img {
        top: -2.5em;
        left: -1em;
    }
}

@media (max-width:991px) {
    .tourism_pricing {
        padding: 0 0 50px 0;
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }
    .tourism_pricing>div {
        padding: 2em 0em;
    }
    .tourism_pricing>div>div {
        grid-template-columns: 1fr;
    }
    .tourism_pricing img {
        left: -1.5em;
        left: 0em;
        top: -2em;
    }
}
