p {
    padding-bottom: 0
}

@font-face {
    font-family: LT-Light;
    src: url(../fonts/alfont_com_ArbFONTS-Somar-ExtraLight.otf);
    font-display: swap
}

@font-face {
    font-family: LT-Roman;
    src: url(../fonts/alfont_com_Somar-Light.otf);
    font-display: swap
}

@font-face {
    font-family: LT-Bold;
    src: url(../fonts/alfont_com_Somar-Bold.otf);
    font-display: swap
}

@font-face {
    font-family: LT-Black;
    src: url(../fonts/alfont_com_Somar-Black.otf);
    font-display: swap
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: LT-Bold
}

h2, h3, h4, h5, h6 {
    font-family: LT-Bold
}

a {
    text-decoration: none
}

p {
    padding-bottom: 0
}

ul, li {
    list-style: none
}

.contain {
    width: calc(100% - 160px);
    margin: 0 auto
}

@media only screen and (max-width:768px) {
    .contain {
        width: calc(100% - 100px)
    }
}

@media only screen and (max-width:550px) {
    .contain {
        width: calc(100% - 60px)
    }
}

.section--title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px
}

    .section--title p {
        display: inline-block;
        font-size: 16px;
        color: #c8a134;
        background: #fff7ed;
        padding: 5px 20px;
        border-radius: 25px
    }

    .section--title h2 {
        font-size: 30px;
        color: #2C3E50;
        font-family: LT-Bold;
        text-align: center;
        line-height: 1.5
    }

.can--btn {
    display: flex;
    align-items: center;
    justify-content: center
}

    .can--btn button, .can--btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        border-radius: 25px;
        background-color: #198754;
        color: #fff;
        font-size: 16px;
        border: none;
        cursor: pointer;
        transition: all .2s ease
    }

        .can--btn button:hover, .can--btn a:hover {
            background-color: #c8a134;
            box-shadow: 0 0 20px rgba(0,0,0,.25)
        }

        .can--btn button img, .can--btn a img {
            width: 32px;
            margin-right: 10px
        }

.input--field {
    position: relative;
    width: 170px
}

    .input--field input {
        border: none !important;
        border-bottom: 1px solid #707070 !important;
        font-size: 16px;
        padding: 5px !important;
        width: 100%;
        background-color: transparent;
        color: #333
    }

        .input--field input:focus {
            outline: none;
            border-bottom-color: #707070
        }

        .input--field input::-moz-placeholder {
            color: transparent
        }

        .input--field input::placeholder {
            color: transparent
        }

    .input--field label {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 16px;
        color: black;
        pointer-events: none;
        transition: all .2s ease
    }

    .input--field input:not(:-moz-placeholder-shown) + label {
        transform: translateY(-1.5rem);
        font-size: 16px;
        color: black
    }

    .input--field input:focus + label, .input--field input:not(:placeholder-shown) + label {
        transform: translateY(-1.5rem);
        font-size: 16px;
        color: black
    }

.select--field {
    display: flex;
    flex-direction: column;
    width: 170px
}

    .select--field label {
        /*transform: translateY(-1.5rem);*/
        font-size: 16px;
        color: #198754
    }

    .select--field .select2-container--default .select2-selection--single {
        background-color: transparent;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #707070;
        font-size: 16px;
        height: 36px
    }

.textarea--field {
    position: relative;
    width: 100%;
    margin-top: 20px
}

    .textarea--field textarea {
        border: none;
        border-bottom: 1px solid #c8a134 !important;
        font-size: 16px;
        padding: 5px !important;
        width: 100%;
        background-color: transparent !important;
        color: #333;
        height: 150px;
        resize: none;
        line-height: 1.5
    }

        .textarea--field textarea:focus {
            outline: none;
            border-bottom-color: #c8a134
        }

        .textarea--field textarea::-moz-placeholder {
            color: transparent
        }

        .textarea--field textarea::placeholder {
            color: transparent
        }

    .textarea--field label {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 16px;
        color: #707070;
        pointer-events: none;
        transition: all .2s ease
    }

    .textarea--field textarea:not(:-moz-placeholder-shown) + label {
        transform: translateY(-1.5rem);
        font-size: 16px;
        color: #707070
    }

    .textarea--field textarea:focus + label, .textarea--field textarea:not(:placeholder-shown) + label {
        transform: translateY(-1.5rem);
        font-size: 16px;
        color: #707070
    }

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 18px
}

    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0
    }

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6
}

.control--radio .control__indicator {
    border-radius: 50%
}

.control:hover input ~ .control__indicator, .control input:focus ~ .control__indicator {
    background: #ccc
}

.control input:checked ~ .control__indicator {
    background: #c8a134
}

.control:hover input:not([disabled]):checked ~ .control__indicator, .control input:checked:focus ~ .control__indicator {
    background: #c8a134
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: .6;
    pointer-events: none
}

.control__indicator:after {
    content: "";
    position: absolute;
    display: none
}

.control input:checked ~ .control__indicator:after {
    display: block
}

.control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b
}

.control--radio .control__indicator:after {
    left: 4px;
    top: 4px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #fff
}

.control--radio input:disabled ~ .control__indicator:after {
    background: #707070
}

.radio--field {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
    font-size: 16px
}

    .radio--field label {
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        line-height: 1;
        font-size: 15px
    }

.can__page--header {
    position: relative;
    background: center no-repeat;
    background-size: cover;
    /*margin-top: 100px*/
}

    .can__page--header .can--layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.5);
        z-index: 0
    }

    .can__page--header .page--header--content {
        height: 300px;
        z-index: 1;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #fff
    }

        .can__page--header .page--header--content .page--title {
            font-size: 50px;
            font-family: LT-Black;
            text-align: center;
            color: #fff
        }

@media only screen and (max-width:768px) {
    .can__page--header .page--header--content .page--title {
        font-size: 30px;
        line-height: 1.5
    }
}

.can__page--header .page--header--content .page--description {
    font-size: 20px;
    font-family: LT-Roman;
    text-align: center;
    max-width: 600px;
    line-height: 1.5
}

.tours--pagination {
    display: flex;
    align-items: center;
    justify-content: center
}

    .tours--pagination a {
        color: #c8a134;
        font-size: 20px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        border-radius: 50%;
        border: 1px solid transparent;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: LT-Bold
    }

        .tours--pagination a:hover {
            border: 1px solid #c8a134;
            background: rgba(245,157,49,.1)
        }

    .tours--pagination .current {
        font-size: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid transparent;
        opacity: .5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: LT-Bold
    }

    .tours--pagination .button-next {
        cursor: pointer;
        outline: none
    }

        .tours--pagination .button-next svg {
            width: 25px;
            height: 25px
        }

@media only screen and (max-width:550px) {
    .tours--pagination .button-next svg {
        height: 25px;
        width: 25px
    }
}

.tours--pagination .button-next svg .hgh {
    fill: #c8a134;
    stroke-dasharray: 200px;
    stroke-dashoffset: 200px;
    transition: 1.5s ease stroke-dashoffset,.2s ease fill
}

.tours--pagination .button-next:hover .hgh {
    stroke: #c8a134;
    stroke-width: 1;
    fill: transparent;
    stroke-dashoffset: 0
}

.tours--pagination .button-prev {
    cursor: pointer;
    outline: none
}

    .tours--pagination .button-prev svg {
        width: 25px;
        height: 25px;
        transform: rotate(180deg)
    }

@media only screen and (max-width:550px) {
    .tours--pagination .button-prev svg {
        width: 25px;
        height: 25px
    }
}

.tours--pagination .button-prev svg .hgh {
    fill: #c8a134;
    stroke-dasharray: 200px;
    stroke-dashoffset: 200px;
    transition: 1.5s ease stroke-dashoffset,.2s ease fill
}

.tours--pagination .button-prev:hover .hgh {
    stroke: #c8a134;
    stroke-width: 1;
    fill: transparent;
    stroke-dashoffset: 0
}

.select2-hidden-accessible {
    position: relative !important;
    margin-top: -20px !important
}

.select--field .select2-container {
    margin-top: 0 !important
}

.can__page--about .about--details {
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-around
}

@media only screen and (max-width:768px) {
    .can__page--about .about--details {
        flex-wrap: wrap
    }
}

.can__page--about .about--details .about--details--img {
    width: 400px
}

@media only screen and (max-width:992px) {
    .can__page--about .about--details .about--details--img {
        width: 300px;
        margin-left: 50px
    }
}

@media only screen and (max-width:768px) {
    .can__page--about .about--details .about--details--img {
        margin-left: 0
    }
}

.can__page--about .about--details .heading--box {
    width: 600px
}

@media only screen and (max-width:768px) {
    .can__page--about .about--details .heading--box {
        width: 100%;
        margin-top: 50px
    }
}

.can__page--about .about--details .heading--box .heading--box--title {
    font-size: 25px;
    color: #333;
    font-family: lt-bold
}

.can__page--about .about--details .heading--box .heading--box--subtitle {
    font-size: 18px;
    color: #707070;
    margin: 20px 0;
    width: 80%;
    font-family: LT-Roman
}

@media only screen and (max-width:768px) {
    .can__page--about .about--details .heading--box .heading--box--subtitle {
        width: 100%
    }
}

.can__page--about .about--details .heading--box .heading--box--text {
    color: #198754;
    font-size: 18px;
    margin: 50px 0;
    width: 80%
}

@media only screen and (max-width:768px) {
    .can__page--about .about--details .heading--box .heading--box--text {
        width: 100%
    }
}

.can__page--about .about--details .heading--box .can--btn {
    margin-top: 50px;
    justify-content: flex-start
}

.can__page--tours .search--form {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -70px;
    z-index: 2;
    position: relative
}

@media only screen and (max-width:992px) {
    .can__page--tours .search--form {
        justify-content: center
    }
}

@media only screen and (max-width:550px) {
    .can__page--tours .search--form {
        margin-top: -20px
    }
}

.can__page--tours .search--form form {
    width: 800px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.25);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width:992px) {
    .can__page--tours .search--form form {
        margin-top: 0;
        margin-bottom: 0;
        flex-wrap: wrap;
        padding: 50px;
        width: 90%
    }
}

.can__page--tours .search--form form .input--field {
    position: relative;
    width: 170px
}

@media only screen and (max-width:992px) {
    .can__page--tours .search--form form .input--field {
        width: 100%;
        margin-bottom: 40px
    }
}

.can__page--tours .search--form form .input--field input {
    border: none;
    border-bottom: 1px solid #707070;
    font-size: 16px;
    padding: 5px;
    width: 100%;
    background-color: transparent;
    color: #333
}

    .can__page--tours .search--form form .input--field input:focus {
        outline: none;
        border-bottom-color: #707070
    }

    .can__page--tours .search--form form .input--field input::-moz-placeholder {
        color: transparent
    }

    .can__page--tours .search--form form .input--field input::placeholder {
        color: transparent
    }

.can__page--tours .search--form form .input--field label {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: #707070;
    pointer-events: none;
    transition: all .2s ease
}

.can__page--tours .search--form form .input--field input:not(:-moz-placeholder-shown) + label {
    transform: translateY(-1.5rem);
    font-size: 16px;
    color: #707070
}

.can__page--tours .search--form form .input--field input:focus + label, .can__page--tours .search--form form .input--field input:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem);
    font-size: 16px;
    color: #707070
}

.can__page--tours .search--form form .select--field {
    display: flex;
    flex-direction: column;
    width: 170px
}

@media only screen and (max-width:992px) {
    .can__page--tours .search--form form .select--field {
        width: calc(100% - 5px);
        margin-bottom: 30px
    }
}

@media only screen and (max-width:992px) {
    .can__page--tours .search--form form .select--field .select2 {
        width: 100% !important
    }
}

.can__page--tours .search--form form .select--field label {
    transform: translateY(-1.5rem);
    font-size: 16px;
    color: #707070
}

.can__page--tours .search--form form .select--field .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #707070;
    font-size: 16px;
    height: 36px
}

.can__page--tours .search--form form .select--field .select2-container {
    margin-top: -24px
}

.can__page--tours .search--form form .form--content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%
}

@media only screen and (max-width:992px) {
    .can__page--tours .search--form form .form--content {
        flex-wrap: wrap
    }
}

.can__page--tours .search--form form .form--btn {
    background-color: #c8a134;
    color: #fff;
    text-align: center;
    border-radius: 25px 0 0 25px;
    height: 140px;
    font-size: 18px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 190px;
    border: none
}

@media only screen and (max-width:992px) {
    .can__page--tours .search--form form .form--btn {
        width: 100%;
        border-radius: 25px;
        flex-direction: row-reverse;
        height: 80px
    }
}

.can__page--tours .search--form form .form--btn:hover {
    background-color: #c8a134
}

.can__page--tours .search--form form .form--btn img {
    width: 40px
}

.can__page--tours .tours--tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px
}

    .can__page--tours .tours--tools .tours--count {
        font-size: 20px;
        color: #707070
    }

@media only screen and (max-width:550px) {
    .can__page--tours .tours--tools .tours--count {
        font-size: 16px
    }
}

.can__page--tours .tours--tools .tours--count span {
    font-family: LT-Bold
}

.can__page--tours .tours--tools .tours--filter {
    display: flex;
    align-items: center
}

@media only screen and (max-width:550px) {
    .can__page--tours .tours--tools .tours--filter {
        flex-direction: column;
        align-items: flex-start
    }
}

.can__page--tours .tours--tools .tours--filter label {
    color: #707070;
    font-size: 20px
}

@media only screen and (max-width:550px) {
    .can__page--tours .tours--tools .tours--filter label {
        font-size: 16px;
        margin-bottom: 10px
    }
}

.can__page--tours .tours--tools .tours--filter .select--field {
    margin-right: 20px;
    margin-top: 10px
}

@media only screen and (max-width:550px) {
    .can__page--tours .tours--tools .tours--filter .select--field {
        margin-right: 0
    }
}

.can__page--tours .tours--list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px
}

    .can__page--tours .tours--list .tour--card--wrapper {
        margin-left: 20px;
        margin-bottom: 20px
    }

@media only screen and (max-width:768px) {
    .can__page--tours .tours--list .tour--card--wrapper {
        margin-left: 0
    }
}

.can__page--tours .tours--list .tour--card {
    min-height: 400px;
    max-width: 370px;
    width: 370px;
    border-radius: 25px;
    background: center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: .2s ease-out all;
    position: relative;
    box-shadow: 0 0 5px rgba(0,0,0,.2)
}

@media only screen and (max-width:768px) {
    .can__page--tours .tours--list .tour--card {
        max-width: 330px;
        min-height: 350px
    }
}

.can__page--tours .tours--list .tour--card:hover {
    transform: rotate(-2deg)
}

.can__page--tours .tours--list .tour--card .can--layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg,rgba(0,0,0,0) 0%,#c8a134 77%);*/
    border-radius: 25px;
    z-index: 0;
    transition: all .5s ease
}

.can__page--tours .tours--list .tour--card .tour--badges {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 50px
}

    .can__page--tours .tours--list .tour--card .tour--badges .badge--item {
        color: #fff;
        padding: 1px 10px;
        min-width: 70px;
        text-align: center;
        border-radius: 10px;
        font-size: 12px;
        position: absolute;
        top: 10px
    }

    .can__page--tours .tours--list .tour--card .tour--badges .badge--featured {
        right: 10px;
        background: #29abe2

    }

    .can__page--tours .tours--list .tour--card .tour--badges .badge--discount {
        left: 10px;
        background: #c8a134
    }

.can__page--tours .tours--list .tour--card .tour--content {
    z-index: 1;
    padding: 10px;
    padding-bottom: 20px;
    background: linear-gradient(-3deg, #1a2330ad 0%, #1a2330 100%);
}

    .can__page--tours .tours--list .tour--card .tour--content .tour--rating img {
        height: 15px;
        margin-left: 0
    }

    .can__page--tours .tours--list .tour--card .tour--content .tour--title {
        font-size: 20px;
        color: #fff;
        font-family: LT-Roman;
        line-height: 1;
        margin-bottom: 10px
    }

    .can__page--tours .tours--list .tour--card .tour--content .tour--location, .can__page--tours .tours--list .tour--card .tour--content .tour--price {
        display: flex;
        align-items: flex-start;
        justify-content: space-evenly;
        /*margin-bottom: 5px*/
    }

        .can__page--tours .tours--list .tour--card .tour--content .tour--price p {
            padding-bottom: 0
        }

        .can__page--tours .tours--list .tour--card .tour--content .tour--location img, .can__page--tours .tours--list .tour--card .tour--content .tour--price img {
            height: 19px;
            margin-left: 3px
        }

        .can__page--tours .tours--list .tour--card .tour--content .tour--location p, .can__page--tours .tours--list .tour--card .tour--content .tour--price p {
            font-size: 14px;
            color: #fff;
            font-family: LT-Roman
        }

        .can__page--tours .tours--list .tour--card .tour--content .tour--location .price--value, .can__page--tours .tours--list .tour--card .tour--content .tour--location .price--currency, .can__page--tours .tours--list .tour--card .tour--content .tour--price .price--value, .can__page--tours .tours--list .tour--card .tour--content .tour--price .price--currency {
            color: #c8a134;
            margin-right: 3px
        }

.can__page--tours .can--btn {
    margin-top: 50px
}

.can__page--tours .articles--list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px
}

.can__page--tours .article--card.article--small {
    margin-left: 50px;
    margin-bottom: 50px
}

@media only screen and (max-width:1250px) {
    .can__page--tours .article--card.article--small {
        margin-bottom: 20px;
        margin-left: 0
    }
}

.can__page--tours .article--card.article--small a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 540px;
    height: 170px;
    background: #fff;
    border-radius: 25px;
    padding: 10px;
    transition: .2s ease-out all;
    box-shadow: 0 0 20px rgba(0,0,0,.25)
}

@media only screen and (max-width:710px) {
    .can__page--tours .article--card.article--small a {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        padding-bottom: 50px
    }
}

.can__page--tours .article--card.article--small a:hover {
    background: #fff7ed;
    transform: translateX(10px)
}

.can__page--tours .article--card.article--small .artcle--image {
    height: 150px;
    min-width: 180px;
    border-radius: 25px;
    background: no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px
}

@media only screen and (max-width:710px) {
    .can__page--tours .article--card.article--small .artcle--image {
        width: 100%;
        margin-left: 0
    }
}

.can__page--tours .article--card.article--small .artcle--image .article--category {
    margin: 10px auto;
    display: inline-block;
    max-width: 80%;
    background: #c8a134;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 10px;
    line-height: 1
}

.can__page--tours .article--card.article--small .blog--article--content .blog--article--date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #9c9c9c;
    font-size: 14px
}

@media only screen and (max-width:710px) {
    .can__page--tours .article--card.article--small .blog--article--content .blog--article--date {
        margin: 10px 0
    }
}

.can__page--tours .article--card.article--small .blog--article--content .blog--article--date img {
    margin-left: 10px
}

.can__page--tours .article--card.article--small .blog--article--content .blog--article--title {
    color: #707070;
    font-size: 20px;
    font-family: LT-Roman
}

@media only screen and (max-width:710px) {
    .can__page--tours .article--card.article--small .blog--article--content .blog--article--title {
        margin-top: 10px
    }
}

.can__page--tours .article--card.article--small .blog--article--content .blog--article--text {
    color: #9c9c9c;
    font-size: 16px;
    line-height: 1.5
}

.can__page--single--tour .tour--summary {
    background: #c8a134
}

    .can__page--single--tour .tour--summary .tour--summary--content {
        display: flex;
        align-items: flex-end;
        flex-wrap: nowrap;
        justify-content: space-around
    }

@media only screen and (max-width:600px) {
    .can__page--single--tour .tour--summary .tour--summary--content {
        flex-wrap: wrap;
        justify-content: flex-start
    }
}

.can__page--single--tour .tour--summary .tour--summary--content .tour--summary--item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0
}

@media only screen and (max-width:600px) {
    .can__page--single--tour .tour--summary .tour--summary--content .tour--summary--item {
        width: 100%;
        justify-content: flex-start
    }
}

.can__page--single--tour .tour--summary .tour--summary--content .tour--summary--item img {
    width: 33px;
    margin-left: 10px
}

.can__page--single--tour .tour--summary .tour--summary--content .tour--summary--item p {
    font-size: 16px;
    color: #fff;
    margin-left: 10px
}

    .can__page--single--tour .tour--summary .tour--summary--content .tour--summary--item p b {
        color: #ffffff
    }

.can__page--single--tour .tour--gallery {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2,215px);
    grid-gap: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px
}

@media only screen and (max-width:768px) {
    .can__page--single--tour .tour--gallery {
        grid-template-rows: repeat(2,160px)
    }
}

@media only screen and (max-width:650px) {
    .can__page--single--tour .tour--gallery {
        grid-template-rows: repeat(2,130px)
    }
}

@media only screen and (max-width:550px) {
    .can__page--single--tour .tour--gallery {
        grid-template-columns: repeat(2,1fr)
    }
}

.can__page--single--tour .tour--gallery--item:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2
}

.can__page--single--tour .tour--gallery img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    transition: all .2s ease
}

    .can__page--single--tour .tour--gallery img:hover {
        opacity: .8
    }

.can__page--single--tour h2 {
    font-size: 20px;
    color: black;
    font-family: LT-Bold;
    margin-bottom: 10px
}

.can__page--single--tour p {
    font-size: 16px;
    color: black;
    line-height: 1.5
}

.can__page--single--tour .tour--description {
    margin-top: 50px
}

    .can__page--single--tour .tour--description *:not(h2) {
        font-family: lt-roman
    }

.can__page--single--tour .tour--advantages--wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 50px
}

@media only screen and (max-width:768px) {
    .can__page--single--tour .tour--advantages--wrapper {
        flex-wrap: wrap
    }
}

.can__page--single--tour .tour--advantages--wrapper .tour--advantages {
    width: 50%
}

@media only screen and (max-width:768px) {
    .can__page--single--tour .tour--advantages--wrapper .tour--advantages {
        width: 100%;
        margin-bottom: 40px
    }
}

.can__page--single--tour .tour--advantages--wrapper .tour--advantages .advantages--list .advantage--item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px
}

    .can__page--single--tour .tour--advantages--wrapper .tour--advantages .advantages--list .advantage--item img {
        width: 20px;
        margin-left: 5px
    }

    .can__page--single--tour .tour--advantages--wrapper .tour--advantages .advantages--list .advantage--item p {
        font-size: 16px;
        color: black;
        line-height: 1.5
    }

.can__page--single--tour .tour--program {
    margin-top: 50px
}

    .can__page--single--tour .tour--program .tour--accordion h2 {
        display: block;
        margin: 0;
        cursor: pointer;
        font-family: LT-Roman;
        font-size: 16px;
        background: #fff;
        border-radius: 25px;
        padding: 10px 20px;
        color: #c8a134;
        margin-left: 10px;
        margin-right: 10px
    }

    .can__page--single--tour .tour--program .tour--accordion p {
        position: relative;
        overflow: hidden;
        opacity: 1;
        transform: translate(0,0);
        margin-top: 14px;
        z-index: 2;
        padding: 10px 20px
    }

    .can__page--single--tour .tour--program .tour--accordion li {
        position: relative;
        padding: 0;
        margin: 0;
        border: 1px solid #c8a134;
        margin-bottom: 20px;
        border-radius: 25px
    }

        .can__page--single--tour .tour--program .tour--accordion li:nth-of-type(1) {
            animation-delay: .5s
        }

        .can__page--single--tour .tour--program .tour--accordion li:nth-of-type(2) {
            animation-delay: .75s
        }

        .can__page--single--tour .tour--program .tour--accordion li:nth-of-type(3) {
            animation-delay: 1s
        }

        .can__page--single--tour .tour--program .tour--accordion li:last-of-type {
            padding-bottom: 0
        }

        .can__page--single--tour .tour--program .tour--accordion li i {
            position: absolute;
            transform: translate(-6px,0);
            margin-top: 22px;
            left: 30px
        }

            .can__page--single--tour .tour--program .tour--accordion li i:before, .can__page--single--tour .tour--program .tour--accordion li i:after {
                content: "";
                position: absolute;
                background-color: #c8a134;
                width: 2px;
                height: 9px
            }

            .can__page--single--tour .tour--program .tour--accordion li i:before {
                transform: translate(-3px,0) rotate(45deg)
            }

            .can__page--single--tour .tour--program .tour--accordion li i:after {
                transform: translate(3px,0) rotate(-45deg)
            }

        .can__page--single--tour .tour--program .tour--accordion li input[type=checkbox] {
            position: absolute;
            cursor: pointer;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0
        }

            .can__page--single--tour .tour--program .tour--accordion li input[type=checkbox]:checked ~ h2 {
                background: #c8a134;
                color: #fff;
                margin-left: 0;
                margin-right: 0
            }

            .can__page--single--tour .tour--program .tour--accordion li input[type=checkbox]:checked ~ p {
                margin-top: 0;
                max-height: 0;
                opacity: 0;
                transform: translate(0,50%);
                padding: 0 20px
            }

            .can__page--single--tour .tour--program .tour--accordion li input[type=checkbox]:checked ~ i:before {
                transform: translate(3px,0) rotate(45deg);
                background: #fff
            }

            .can__page--single--tour .tour--program .tour--accordion li input[type=checkbox]:checked ~ i:after {
                transform: translate(-3px,0) rotate(-45deg);
                background: #fff
            }

.can__page--single--tour .can--cta {
    /*margin-top: 100px;*/
    background: center no-repeat;
    background-size: cover;
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    /*padding: 100px 0*/
}

@media only screen and (max-width:768px) {
    .can__page--single--tour .can--cta {
        flex-wrap: wrap
    }
}

.can__page--single--tour .can--cta .can--layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%,#000000 100%);
    border-radius: 25px;
    z-index: 0;
    transition: all .5s ease
}

.can__page--single--tour .can--cta .can__contact--form {
    background: #e2e2e2;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 0 20px rgba(0,0,0,.25);
    /*width: 560px;*/
    margin: 0 auto;
    /*margin-top: 30px;*/
    z-index: 1;
    box-shadow: 0 0 25px #c8a134;
}

@media only screen and (max-width:580px) {
    .can__page--single--tour .can--cta .can__contact--form {
        width: 90%;
        padding: 20px
    }
}

.can__page--single--tour .can--cta .can__contact--form .input--field, .can__page--single--tour .can--cta .can__contact--form .select--field {
    display: inline-block;
    margin-left: 20px;
    width: 200px;
    margin-bottom: 20px
}

@media only screen and (max-width:580px) {
    .can__page--single--tour .can--cta .can__contact--form .input--field, .can__page--single--tour .can--cta .can__contact--form .select--field {
        width: 100%
    }
}

.can__page--single--tour .can--cta .can__contact--form .input--field .select2, .can__page--single--tour .can--cta .can__contact--form .select--field .select2 {
    width: 100% !important
}

.can__page--single--tour .can--cta .can__contact--form .textarea--field {
    width: 425px
}

@media only screen and (max-width:580px) {
    .can__page--single--tour .can--cta .can__contact--form .textarea--field {
        width: 100%
    }
}

.can__page--single--tour .can--cta .can__contact--form .radio--field {
    margin-top: 40px;
    margin-bottom: 50px
}

.can__page--single--tour .can--cta .can__contact--form .can--btn {
    margin-top: 25px !important
}

.can__page--single--tour .can--cta .contact--btns {
    width: 40%
}

@media only screen and (max-width:680px) {
    .can__page--single--tour .can--cta .contact--btns {
        width: 100%
    }
}

.can__page--single--tour .can--cta .contact--btns .can--btn a {
    width: 230px;
    margin-bottom: 20px
}

.can__page--single--tour .can__contact--form--title {
    color: #198754;
    font-size: 25px;
    border-right: 5px solid #c8a134;
    line-height: 1.5;
    padding-right: 20px;
    margin-bottom: 40px;
    font-family: LT-Bold
}

.transition, .can__page--single--tour .tour--program .tour--accordion h2, .can__page--single--tour .tour--program .tour--accordion p, .can__page--single--tour .tour--program .tour--accordion li i:before, .can__page--single--tour .tour--program .tour--accordion li i:after {
    transition: all .25s ease-in-out
}

.flipIn, .can__page--single--tour .tour--program .tour--accordion li {
    animation: flipdown .5s ease both
}

@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg)
    }

    5% {
        opacity: 1
    }

    80% {
        transform: rotateX(8deg)
    }

    83% {
        transform: rotateX(6deg)
    }

    92% {
        transform: rotateX(-3deg)
    }

    100% {
        transform-origin: top center;
        transform: rotateX(0deg)
    }
}

.can__page--blog .articles--list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px
}

.can__page--blog .article--card.article--wide {
    margin-left: 50px;
    margin-bottom: 50px
}

@media only screen and (max-width:1250px) {
    .can__page--blog .article--card.article--wide {
        margin-bottom: 20px;
        margin-left: 0
    }
}

.can__page--blog .article--card.article--wide a {
    display: block;
    width: 460px;
    height: 370px;
    background: #fff;
    border-radius: 25px;
    padding: 10px;
    transition: .2s ease-out all;
    box-shadow: 0 0 20px rgba(0,0,0,.25)
}

@media only screen and (max-width:1250px) {
    .can__page--blog .article--card.article--wide a {
        width: 650px;
        height: auto;
        padding-bottom: 50px
    }
}

@media only screen and (max-width:710px) {
    .can__page--blog .article--card.article--wide a {
        width: 100%;
        height: auto
    }
}

.can__page--blog .article--card.article--wide a:hover {
    background: #fff7ed;
    transform: translateX(10px)
}

.can__page--blog .article--card.article--wide a .artcle--image {
    height: 170px;
    width: 100%;
    border-radius: 25px;
    background: no-repeat center center;
    background-size: cover;
    position: relative
}

    .can__page--blog .article--card.article--wide a .artcle--image .article--category {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #c8a134;
        color: #fff;
        font-size: 14px;
        padding: 5px 10px;
        border-radius: 10px;
        line-height: 1
    }

.can__page--blog .article--card.article--wide a .blog--article--content .blog--article--date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #9c9c9c;
    font-size: 14px;
    margin-top: 10px
}

    .can__page--blog .article--card.article--wide a .blog--article--content .blog--article--date img {
        margin-left: 10px
    }

.can__page--blog .article--card.article--wide a .blog--article--content .blog--article--title {
    color: #707070;
    font-size: 20px;
    margin-top: 10px;
    font-family: LT-Roman
}

.can__page--blog .article--card.article--wide a .blog--article--content .blog--article--text {
    color: #9c9c9c;
    font-size: 16px;
    line-height: 1.5
}

.can__page--blog .can--btn {
    margin-top: 10px
}

.can__page--single--article .page--description {
    display: flex;
    align-items: center;
    justify-content: center
}

@media only screen and (max-width:768px) {
    .can__page--single--article .page--description {
        margin-top: 25px
    }
}

@media only screen and (max-width:550px) {
    .can__page--single--article .page--description {
        flex-wrap: wrap
    }
}

.can__page--single--article .page--description .vertical--devider {
    width: 1px;
    height: 40px;
    background: #fff;
    margin: 0 30px
}

@media only screen and (max-width:768px) {
    .can__page--single--article .page--description .vertical--devider {
        height: 20px
    }
}

@media only screen and (max-width:550px) {
    .can__page--single--article .page--description .vertical--devider {
        margin: 10px 0
    }
}

.can__page--single--article .page--description span {
    font-size: 20px
}

@media only screen and (max-width:768px) {
    .can__page--single--article .page--description span {
        font-size: 16px
    }
}

.can__page--single--article .page--description img {
    width: 30px;
    margin-left: 10px
}

@media only screen and (max-width:768px) {
    .can__page--single--article .page--description img {
        width: 20px
    }
}

.can__page--single--article .page--description div {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

@media only screen and (max-width:550px) {
    .can__page--single--article .page--description div {
        width: 100%;
        justify-content: center
    }
}

.can__page--single--article .can__page--content .article--content h1, .can__page--single--article .can__page--content .article--content h2, .can__page--single--article .can__page--content .article--content h3, .can__page--single--article .can__page--content .article--content h4, .can__page--single--article .can__page--content .article--content h5, .can__page--single--article .can__page--content .article--content h6 {
    color: #333;
    font-family: LT-Roman;
    margin: 20px 0
}

.can__page--single--article .can__page--content .article--content p {
    color: #707070;
    font-size: 16px;
    line-height: 1.5;
    margin: 20px 0
}

.can__page--single--article .can__page--content .article--content img {
    width: 100%;
    margin: 20px 0;
    border-radius: 25px
}

.can__page--single--article .can__page--content .article--tools {
    background: #fff7ed;
    border-radius: 25px;
    padding: 20px;
    margin-top: 50px
}

    .can__page--single--article .can__page--content .article--tools .article--tags {
        display: flex;
        align-items: center
    }

@media only screen and (max-width:768px) {
    .can__page--single--article .can__page--content .article--tools .article--tags {
        flex-wrap: wrap
    }
}

.can__page--single--article .can__page--content .article--tools .article--tags h2 {
    color: #333;
    font-family: LT-Roman;
    font-size: 20px;
    margin-left: 10px
}

@media only screen and (max-width:768px) {
    .can__page--single--article .can__page--content .article--tools .article--tags h2 {
        font-size: 16px
    }
}

.can__page--single--article .can__page--content .article--tools .article--tags .tags--list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap
}

    .can__page--single--article .can__page--content .article--tools .article--tags .tags--list .tag--item {
        margin-left: 10px
    }

@media only screen and (max-width:768px) {
    .can__page--single--article .can__page--content .article--tools .article--tags .tags--list .tag--item {
        margin-bottom: 10px
    }
}

.can__page--single--article .can__page--content .article--tools .article--tags .tags--list .tag--item a {
    background: #d9d9d9;
    color: #333;
    font-size: 14px;
    padding: 2px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: .2s ease-out all;
    line-height: 1
}

    .can__page--single--article .can__page--content .article--tools .article--tags .tags--list .tag--item a:hover {
        background: #c8a134;
        color: #fff
    }

.can__page--single--article .can__page--content .article--tools .article--share {
    display: flex;
    align-items: center;
    margin-top: 20px
}

@media only screen and (max-width:768px) {
    .can__page--single--article .can__page--content .article--tools .article--share {
        flex-wrap: wrap
    }
}

.can__page--single--article .can__page--content .article--tools .article--share h2 {
    color: #333;
    font-family: LT-Roman;
    font-size: 20px;
    margin-left: 10px
}

@media only screen and (max-width:768px) {
    .can__page--single--article .can__page--content .article--tools .article--share h2 {
        font-size: 16px
    }
}

.can__page--single--article .can__page--content .article--tools .article--share .share--list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap
}

    .can__page--single--article .can__page--content .article--tools .article--share .share--list .share--item {
        margin-left: 10px;
        margin-bottom: 10px
    }

        .can__page--single--article .can__page--content .article--tools .article--share .share--list .share--item a {
            height: 42px;
            width: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid #707070;
            cursor: pointer;
            transition: .2s ease-out all;
            line-height: 1
        }

            .can__page--single--article .can__page--content .article--tools .article--share .share--list .share--item a:hover {
                background: #707070
            }

.can__page--contact .contact--details {
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-around
}

@media only screen and (max-width:768px) {
    .can__page--contact .contact--details {
        flex-wrap: wrap
    }
}

.can__page--contact .contact--summary {
    background: #2c9861
}

    .can__page--contact .contact--summary .tour--summary--content {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

@media only screen and (max-width:600px) {
    .can__page--contact .contact--summary .tour--summary--content {
        flex-wrap: wrap;
        justify-content: flex-start
    }
}

.can__page--contact .contact--summary .tour--summary--content .tour--summary--item {
    /*  display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0*/

    display: flex;
    align-items: center;
    padding: 10px 0 0 0;
    align-content: stretch;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

@media only screen and (max-width:600px) {
    .can__page--contact .contact--summary .tour--summary--content .tour--summary--item {
        width: 100%;
        justify-content: flex-start
    }
}

.can__page--contact .contact--summary .tour--summary--content .tour--summary--item img {
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: #fff7ed;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #707070
}

.can__page--contact .contact--summary .tour--summary--content .tour--summary--item p {
    font-size: 16px;
    color: #ffffff;
    margin-left: 10px
}

.can__page--contact .can__contact--form {
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 0 20px rgba(0,0,0,.25);
    width: 560px;
    margin: 0 auto;
    margin-bottom: 30px
}

@media only screen and (max-width:580px) {
    .can__page--contact .can__contact--form {
        width: 90%;
        padding: 20px
    }
}

.can__page--contact .can__contact--form .input--field, .can__page--contact .can__contact--form .select--field {
    display: inline-block;
    margin-left: 20px;
    width: 200px;
    margin-bottom: 20px
}

@media only screen and (max-width:580px) {
    .can__page--contact .can__contact--form .input--field, .can__page--contact .can__contact--form .select--field {
        width: 100%
    }
}

.can__page--contact .can__contact--form .input--field .select2, .can__page--contact .can__contact--form .select--field .select2 {
    width: 100% !important
}

.can__page--contact .can__contact--form .textarea--field {
    width: 425px
}

@media only screen and (max-width:580px) {
    .can__page--contact .can__contact--form .textarea--field {
        width: 100%
    }
}

.can__page--contact .can__contact--form .radio--field {
    margin-top: 40px;
    margin-bottom: 50px
}

.can__page--contact .can__contact--form .can--btn {
    margin-top: 25px !important
}

.can__page--contact .contact--btns {
    width: 40%
}

@media only screen and (max-width:680px) {
    .can__page--contact .contact--btns {
        width: 100%
    }
}

.can__page--contact .contact--btns .can--btn a {
    width: 230px;
    margin-bottom: 20px
}

.can__page--contact .can__contact--form--title {
    color: #707070;
    font-size: 25px;
    border-right: 5px solid #c8a134;
    line-height: 1.5;
    padding-right: 20px;
    margin-bottom: 40px;
    font-family: LT-Bold
}

.can__page--contact .can__page--content {
    background: #f2f2f2;
    /*padding-bottom: 50px*/
}

.can__header .can__navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: absolute;
    width: calc(100% - 160px);
    top: 0;
    left: 80px
}

@media only screen and (max-width:768px) {
    .can__header .can__navbar {
        width: calc(100% - 100px);
        left: 50px
    }
}

@media only screen and (max-width:550px) {
    .can__header .can__navbar {
        width: calc(100% - 60px);
        left: 30px
    }
}

.can__header .can__navbar .navbar--logo img {
    height: 65px
}

.can__header .can__navbar .navbar--tools {
    position: relative
}

    .can__header .can__navbar .navbar--tools .navbar--tools__search {
        transition: .2s ease-in-out all
    }

        .can__header .can__navbar .navbar--tools .navbar--tools__search:hover {
            opacity: .8
        }

    .can__header .can__navbar .navbar--tools .navbar--tools__menu-btn {
        display: none
    }

@media only screen and (max-width:992px) {
    .can__header .can__navbar .navbar--tools .navbar--tools__menu-btn {
        display: inline
    }

        .can__header .can__navbar .navbar--tools .navbar--tools__menu-btn:hover {
            opacity: .8
        }
}

.can__header .can__navbar .search--box {
    transform: rotateX(90deg);
    transition: .2s ease-in-out all;
    position: absolute;
    top: 40px;
    right: 0;
    transform-origin: top center;
    z-index: 999
}

    .can__header .can__navbar .search--box form {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 25px;
        box-shadow: 0 0 20px rgba(0,0,0,.25);
        padding: 20px
    }

        .can__header .can__navbar .search--box form .input--field {
            width: 230px;
            margin-left: 20px
        }

        .can__header .can__navbar .search--box form button {
            background: #fff7ed;
            border: 1px solid #c8a134;
            cursor: pointer;
            outline: none;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .2s ease
        }

            .can__header .can__navbar .search--box form button img {
                width: 20px
            }

            .can__header .can__navbar .search--box form button:hover {
                border-color: #707070;
                box-shadow: 0 0 2px rgba(0,0,0,.2)
            }

.can__header .can__navbar .navbar--menu {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width:992px) {
    .can__header .can__navbar .navbar--menu {
        flex-direction: column;
        background: #2d363f;
        border-radius: 25px;
        box-shadow: 0 0 20px rgba(0,0,0,.25);
        padding: 20px;
        position: absolute;
        top: 80px;
        right: 0;
        transform: rotateX(90deg);
        transition: .2s ease-in-out all;
        transform-origin: top center;
        z-index: 9999999999999
    }
}

.can__header .can__navbar .navbar--menu li {
    position: relative
}

@media only screen and (max-width:992px) {
    .can__header .can__navbar .navbar--menu li {
        min-width: 150px
    }
}

.can__header .can__navbar .navbar--menu li a {
    color: #333;
    font-size: 16px;
    margin-left: 20px;
    position: relative
}

@media only screen and (max-width:992px) {
    .can__header .can__navbar .navbar--menu li a {
        padding-right: 10px
    }
}

.can__header .can__navbar .navbar--menu li:hover a {
    color: #ffffff
}

    .can__header .can__navbar .navbar--menu li:hover a::after {
        position: absolute;
        content: "";
        width: 35px;
        height: 6px;
        background-color: #c8a134;
        border-radius: 50%;
        top: 117%;
        left: calc(50% - 15px)
    }

@media only screen and (max-width:992px) {
    .can__header .can__navbar .navbar--menu li:hover a::after {
        top: calc(50% - 1px);
        left: 101%
    }
}

.can__header .can__navbar .navbar--menu li.active a {
    color: #333
}

    .can__header .can__navbar .navbar--menu li.active a::after {
        position: absolute;
        content: "";
        width: 35px;
        height: 6px;
        background-color: #c8a134;
        border-radius: 50%;
        top: 117%;
        left: calc(50% - 15px)
    }

@media only screen and (max-width:992px) {
    .can__header .can__navbar .navbar--menu li.active a::after {
        top: calc(50% - 1px);
        left: 101%
    }
}

.can__header .can__navbar .show--search--box {
    transform: rotateX(0deg)
}

.can__promo--section {
    padding-top: 93px;
    background: top center no-repeat;
    background-size: cover
}

    .can__promo--section .promo--wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between
    }

        .can__promo--section .promo--wrapper .promo--img {
            width: 500px;
            height: 600px;
            border-radius: 25px;
            background: center no-repeat;
            background-size: cover
        }

@media only screen and (max-width:992px) {
    .can__promo--section .promo--wrapper .promo--img {
        display: none
    }
}

.can__promo--section .promo--wrapper .promo--content {
    padding: 50px;
    width: 50%
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--wrapper .promo--content {
        width: 100%;
        padding: 20px
    }
}

.can__promo--section .promo--wrapper .promo--content h2 {
    font-size: 40px;
    color: #707070;
    margin-bottom: 20px;
    font-family: LT-Black;
    width: 450px;
    line-height: 1.5
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--wrapper .promo--content h2 {
        width: 100%;
        font-size: 35px
    }
}

.can__promo--section .promo--wrapper .promo--content h2 span {
    color: #c8a134;
    font-family: LT-Black
}

.can__promo--section .promo--wrapper .promo--content p {
    font-size: 20px;
    color: #9c9c9c;
    line-height: 1.5;
    margin-bottom: 20px;
    width: 450px
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--wrapper .promo--content p {
        width: 100%;
        font-size: 18px
    }
}

.can__promo--section .promo--form {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form {
        justify-content: center
    }
}

.can__promo--section .promo--form form {
    width: 800px;
    margin-top: -250px;
    margin-bottom: 250px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.25);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form form {
        margin-top: 0;
        margin-bottom: 0;
        flex-wrap: wrap;
        padding: 50px
    }
}

.can__promo--section .promo--form form .input--field {
    position: relative;
    width: 170px
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form form .input--field {
        width: 100%;
        margin-bottom: 40px
    }
}

.can__promo--section .promo--form form .input--field input {
    border: none;
    border-bottom: 1px solid #707070;
    font-size: 16px;
    padding: 5px;
    width: 100%;
    background-color: transparent;
    color: #333
}

    .can__promo--section .promo--form form .input--field input:focus {
        outline: none;
        border-bottom-color: #707070
    }

    .can__promo--section .promo--form form .input--field input::-moz-placeholder {
        color: transparent
    }

    .can__promo--section .promo--form form .input--field input::placeholder {
        color: transparent
    }

.can__promo--section .promo--form form .input--field label {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: #707070;
    pointer-events: none;
    transition: all .2s ease
}

.can__promo--section .promo--form form .input--field input:not(:-moz-placeholder-shown) + label {
    transform: translateY(-1.5rem);
    font-size: 16px;
    color: #707070
}

.can__promo--section .promo--form form .input--field input:focus + label, .can__promo--section .promo--form form .input--field input:not(:placeholder-shown) + label {
    transform: translateY(-1.5rem);
    font-size: 16px;
    color: #707070
}

.can__promo--section .promo--form form .select--field {
    display: flex;
    flex-direction: column;
    width: 170px
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form form .select--field {
        width: calc(100% - 5px);
        margin-bottom: 30px
    }
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form form .select--field .select2 {
        width: 100% !important
    }
}

.can__promo--section .promo--form form .select--field label {
    transform: translateY(-1.5rem);
    font-size: 16px;
    color: #707070
}

.can__promo--section .promo--form form .select--field .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #707070;
    font-size: 16px;
    height: 36px
}

.can__promo--section .promo--form form .form--content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form form .form--content {
        flex-wrap: wrap
    }
}

.can__promo--section .promo--form form .form--btn {
    background-color: #c8a134;
    color: #fff;
    text-align: center;
    border-radius: 25px 0 0 25px;
    height: 140px;
    font-size: 18px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 190px;
    border: none
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form form .form--btn {
        width: 100%;
        border-radius: 25px;
        flex-direction: row-reverse;
        height: 80px
    }
}

.can__promo--section .promo--form form .form--btn:hover {
    background-color: #c8a134
}

.can__promo--section .promo--form form .form--btn img {
    width: 40px
}

@media only screen and (max-width:992px) {
    .can__promo--section .promo--form form .form--btn img {
        margin-right: 10px
    }
}

.can__destinations--section .section--title {
    padding-bottom: 200px;
    background: top center repeat-x;
    background-size: cover
}

.can__destinations--section .destinatons--list--wrapper .destinations--list {
    margin-top: -150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

@media only screen and (max-width:992px) {
    .can__destinations--section .destinatons--list--wrapper .destinations--list {
        justify-content: center
    }
}

.can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item {
    margin-bottom: 3rem
}

@media only screen and (max-width:992px) {
    .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item {
        margin-left: 3rem
    }
}

@media only screen and (max-width:768px) {
    .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item {
        margin-left: 0
    }
}

.can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 350px;
    height: 190px;
    border-radius: 25px;
    background: center no-repeat;
    background-size: cover;
    position: relative;
    padding: 20px;
    transition: .3s all ease
}

    .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item a:hover {
        box-shadow: 0 0 20px rgba(0,0,0,.25)
    }

        .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item a:hover .destination--content p, .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item a:hover .destination--content h2 {
            transform: translateY(-10px)
        }

.can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item .can--layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg,rgba(30,30,30,0) 39.06%,#c8a134 79.17%);*/
    border-radius: 25px;
    z-index: 0;
    transition: all .5s ease
}

.can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item .destination--badges {
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

    .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item .destination--badges .badge--item {
        background-color: #c8a134;
        color: #fff;
        padding: 3px 15px;
        border-radius: 10px;
        font-size: 14px
    }

.can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item .destination--content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: -30px
}

    .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item .destination--content p {
        color: #c8a134;
        font-size: 16px;
        transition: all .3s ease-in-out
    }

    .can__destinations--section .destinatons--list--wrapper .destinations--list .destination--item .destination--content h2 {
        color: #fff;
        font-size: 26px;
        font-family: LT-Bold;
        text-align: center;
        line-height: 1.3;
        transition: all .3s ease-in-out .1s
    }

.can__destinations--section .destinatons--list--wrapper .children--destinations {
    justify-content: center !important
}

    .can__destinations--section .destinatons--list--wrapper .children--destinations .destination--item {
        margin-left: 3rem !important
    }

@media only screen and (max-width:768px) {
    .can__destinations--section .destinatons--list--wrapper .children--destinations .destination--item {
        margin-left: 0 !important
    }
}

.can__services--section {
    padding: 50px 0
}

    .can__services--section .services--section-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: center
    }

@media only screen and (max-width:992px) {
    .can__services--section .services--section-wrapper {
        flex-wrap: wrap-reverse
    }
}

.can__services--section .services--section-wrapper .services--list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap-reverse;
    width: 540px
}

    .can__services--section .services--section-wrapper .services--list .service--item:hover a {
        background-color: #fff7ed
    }

    .can__services--section .services--section-wrapper .services--list .service--item:hover .service--content h2 {
        color: #c8a134
    }

    .can__services--section .services--section-wrapper .services--list .service--item:nth-child(odd) {
        margin-top: -20px
    }

@media only screen and (max-width:992px) {
    .can__services--section .services--section-wrapper .services--list .service--item:nth-child(odd) {
        margin-top: 0
    }
}

.can__services--section .services--section-wrapper .services--list .service--item a {
    width: 250px;
    margin-bottom: 20px;
    margin-left: 20px;
    background: #fff;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,.25);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out
}

@media only screen and (max-width:550px) {
    .can__services--section .services--section-wrapper .services--list .service--item a {
        margin-left: 0
    }
}

.can__services--section .services--section-wrapper .services--list .service--item a .service--icon {
    height: 100px;
    width: 100px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

    .can__services--section .services--section-wrapper .services--list .service--item a .service--icon img {
        height: 64px
    }

.can__services--section .services--section-wrapper .services--list .service--item a .service--content {
    margin-top: 20px
}

    .can__services--section .services--section-wrapper .services--list .service--item a .service--content h2 {
        font-size: 20px;
        color: #707070;
        font-family: LT-Roman;
        transition: all .3s ease-in-out
    }

.can__services--section .services--section-wrapper .services--details {
    width: 50%;
    padding: 50px
}

@media only screen and (max-width:992px) {
    .can__services--section .services--section-wrapper .services--details {
        width: 100%;
        padding: 0
    }
}

.can__services--section .services--section-wrapper .services--details .title {
    font-size: 30px;
    color: #707070;
    font-family: LT-Bold;
    margin-bottom: 20px
}

.can__services--section .services--section-wrapper .services--details .description {
    font-size: 20px;
    color: #9c9c9c;
    line-height: 1.5;
    margin-bottom: 20px
}

.can__services--section .services--section-wrapper .services--details .experience--years {
    width: 300px;
    padding: 20px;
    margin: 30px auto;
    background: center no-repeat;
    background-size: cover;
    text-align: center;
    margin-top: 100px
}

    .can__services--section .services--section-wrapper .services--details .experience--years h2 {
        font-size: 45px;
        font-family: LT-Black;
        color: #707070;
        line-height: 1.5
    }

        .can__services--section .services--section-wrapper .services--details .experience--years h2 span {
            color: #c8a134;
            font-size: 30px
        }

    .can__services--section .services--section-wrapper .services--details .experience--years p {
        font-size: 20px;
        color: #c8a134;
        line-height: 1.5
    }

.can__tours--section {
    background: top center no-repeat;
    background-size: cover;
    padding: 50px 0
}

    .can__tours--section .tours--slider--content {
        width: 75%;
        margin: 0 auto;
        position: relative;
        margin-bottom: 30px
    }

@media only screen and (max-width:992px) {
    .can__tours--section .tours--slider--content {
        width: 85%
    }
}

@media only screen and (max-width:768px) {
    .can__tours--section .tours--slider--content {
        width: 300px
    }
}

.can__tours--section .tours--home--slider {
    width: 100%
}

    .can__tours--section .tours--home--slider .swiper-slide {
        width: 300px
    }

    .can__tours--section .tours--home--slider .tour--card--wrapper {
        padding: 10px 20px
    }

    .can__tours--section .tours--home--slider .tour--card {
        min-height: 300px;
        max-width: 300px;
        border-radius: 25px;
        background: center no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-decoration: none;
        transition: .2s ease-out all;
        position: relative;
        box-shadow: 0 0 5px rgba(0,0,0,.2)
    }

        .can__tours--section .tours--home--slider .tour--card:hover {
            transform: rotate(-2deg)
        }

        .can__tours--section .tours--home--slider .tour--card .can--layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg,rgba(0,0,0,0) 0%,#000000 100%);
            border-radius: 25px;
            z-index: 0;
            transition: all .5s ease
        }

        .can__tours--section .tours--home--slider .tour--card .tour--badges {
            display: block;
            position: relative;
            z-index: 1;
            width: 100%;
            height: 50px
        }

            .can__tours--section .tours--home--slider .tour--card .tour--badges .badge--item {
                color: #fff;
                padding: 1px 10px;
                min-width: 70px;
                text-align: center;
                border-radius: 10px;
                font-size: 12px;
                position: absolute;
                top: 10px
            }

            .can__tours--section .tours--home--slider .tour--card .tour--badges .badge--featured {
                right: 10px;
                background: #29abe2
            }

            .can__tours--section .tours--home--slider .tour--card .tour--badges .badge--discount {
                left: 10px;
                background: #c8a134
            }

        .can__tours--section .tours--home--slider .tour--card .tour--content {
            z-index: 1;
            padding: 10px;
            padding-bottom: 20px
        }

            .can__tours--section .tours--home--slider .tour--card .tour--content .tour--rating img {
                height: 15px;
                margin-left: 0
            }

            .can__tours--section .tours--home--slider .tour--card .tour--content .tour--title {
                font-size: 20px;
                color: #fff;
                font-family: LT-Roman;
                line-height: 1;
                margin-bottom: 10px
            }

            .can__tours--section .tours--home--slider .tour--card .tour--content .tour--location, .can__tours--section .tours--home--slider .tour--card .tour--content .tour--price {
                display: flex;
                align-items: center;
                justify-content: flex-start
            }

                .can__tours--section .tours--home--slider .tour--card .tour--content .tour--location img, .can__tours--section .tours--home--slider .tour--card .tour--content .tour--price img {
                    height: 19px;
                    margin-left: 3px
                }

                .can__tours--section .tours--home--slider .tour--card .tour--content .tour--location p, .can__tours--section .tours--home--slider .tour--card .tour--content .tour--price p {
                    font-size: 14px;
                    color: #fff;
                    font-family: LT-Roman
                }

                .can__tours--section .tours--home--slider .tour--card .tour--content .tour--location .price--value, .can__tours--section .tours--home--slider .tour--card .tour--content .tour--location .price--currency, .can__tours--section .tours--home--slider .tour--card .tour--content .tour--price .price--value, .can__tours--section .tours--home--slider .tour--card .tour--content .tour--price .price--currency {
                    color: #c8a134;
                    margin-right: 3px
                }

.can__tours--section .button-next {
    position: absolute;
    top: 50%;
    z-index: 999;
    right: -50px;
    cursor: pointer;
    outline: none;
    height: 48px;
    width: 48px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center
}

    .can__tours--section .button-next:hover {
        opacity: .8;
        background: #fff7ed
    }

@media only screen and (max-width:550px) {
    .can__tours--section .button-next {
        right: -25px
    }
}

.can__tours--section .button-next img {
    width: 28px
}

.can__tours--section .button-prev {
    position: absolute;
    top: 50%;
    z-index: 999;
    left: -50px;
    cursor: pointer;
    outline: none;
    height: 48px;
    width: 48px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center
}

    .can__tours--section .button-prev:hover {
        opacity: .8;
        background: #fff7ed
    }

@media only screen and (max-width:550px) {
    .can__tours--section .button-prev {
        left: -25px
    }
}

.can__tours--section .button-prev img {
    width: 28px
}

.can__reviews--section {
    background: right center no-repeat;
    background-size: contain
}

    .can__reviews--section .reviews--slider--content {
        width: 75%;
        margin: 0 auto;
        position: relative;
        margin-bottom: 30px
    }

@media only screen and (max-width:992px) {
    .can__reviews--section .reviews--slider--content {
        width: 85%
    }
}

@media only screen and (max-width:768px) {
    .can__reviews--section .reviews--slider--content {
        width: 400px
    }
}

@media only screen and (max-width:480px) {
    .can__reviews--section .reviews--slider--content {
        width: 350px
    }
}

.can__reviews--section .reviews--home--slider {
    width: 100%
}

    .can__reviews--section .reviews--home--slider .swiper-slide {
        width: 460px
    }

    .can__reviews--section .reviews--home--slider .review--card--wrapper {
        padding: 10px 20px;
        display: flex;
        justify-content: center
    }

@media only screen and (max-width:992px) {
    .can__reviews--section .reviews--home--slider .review--card--wrapper {
        display: flex;
        justify-content: center
    }
}

.can__reviews--section .reviews--home--slider .review--card {
    min-height: 470px;
    max-width: 460px;
    border-radius: 25px;
    border: 1px solid #9c9c9c;
    background: #fff;
    display: block;
    text-decoration: none;
    transition: .2s ease-out all;
    position: relative;
    padding: 20px
}

    .can__reviews--section .reviews--home--slider .review--card:hover {
        background: #fff7ed
    }

    .can__reviews--section .reviews--home--slider .review--card .quote-icon {
        position: absolute;
        top: 30px;
        left: 20px;
        width: 64px
    }

    .can__reviews--section .reviews--home--slider .review--card .review-header .review-img {
        height: 50px;
        width: 50px;
        margin-left: 15px
    }

    .can__reviews--section .reviews--home--slider .review--card .review-header .review-author {
        color: #707070;
        font-size: 18px
    }

    .can__reviews--section .reviews--home--slider .review--card .review-header .rating {
        color: #c8a134;
        margin-top: -10px
    }

    .can__reviews--section .reviews--home--slider .review--card .review-time {
        background: #fff7ed;
        color: #707070;
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        padding: 2px 15px;
        line-height: 1;
        border-radius: 10px;
        margin: 15px 0
    }

        .can__reviews--section .reviews--home--slider .review--card .review-time img {
            margin-left: 10px
        }

    .can__reviews--section .reviews--home--slider .review--card .review-text {
        color: #9c9c9c;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px
    }

.can__reviews--section .review--button--next {
    position: absolute;
    top: 50%;
    z-index: 999;
    right: -50px;
    cursor: pointer;
    outline: none;
    height: 48px;
    width: 48px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center
}

    .can__reviews--section .review--button--next:hover {
        opacity: .8;
        background: #fff7ed
    }

@media only screen and (max-width:550px) {
    .can__reviews--section .review--button--next {
        right: -25px
    }
}

.can__reviews--section .review--button--next img {
    width: 28px
}

.can__reviews--section .review--button--prev {
    position: absolute;
    top: 50%;
    z-index: 999;
    left: -50px;
    cursor: pointer;
    outline: none;
    height: 48px;
    width: 48px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center
}

    .can__reviews--section .review--button--prev:hover {
        opacity: .8;
        background: #fff7ed
    }

@media only screen and (max-width:550px) {
    .can__reviews--section .review--button--prev {
        left: -25px
    }
}

.can__reviews--section .review--button--prev img {
    width: 28px
}

.can__blog--section {
    padding-top: 170px;
    padding-bottom: 220px;
    margin-top: -200px
}

    .can__blog--section .section--title h2 {
        color: #fff
    }

    .can__blog--section .blog--articles {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        margin-bottom: 60px
    }

@media only screen and (max-width:1250px) {
    .can__blog--section .blog--articles {
        flex-wrap: wrap;
        justify-content: center
    }
}

@media only screen and (max-width:1250px) {
    .can__blog--section .blog--articles .articles--right .article--card.article--wide {
        margin-bottom: 20px
    }
}

.can__blog--section .blog--articles .articles--right .article--card.article--wide a {
    display: block;
    width: 460px;
    height: 370px;
    background: #fff;
    border-radius: 25px;
    padding: 10px;
    transition: .2s ease-out all
}

@media only screen and (max-width:1250px) {
    .can__blog--section .blog--articles .articles--right .article--card.article--wide a {
        width: 650px;
        height: auto;
        padding-bottom: 50px
    }
}

@media only screen and (max-width:710px) {
    .can__blog--section .blog--articles .articles--right .article--card.article--wide a {
        width: 100%;
        height: auto
    }
}

.can__blog--section .blog--articles .articles--right .article--card.article--wide a:hover {
    background: #fff7ed;
    transform: translateX(10px)
}

.can__blog--section .blog--articles .articles--right .article--card.article--wide a .artcle--image {
    height: 170px;
    width: 100%;
    border-radius: 25px;
    background: no-repeat center center;
    background-size: cover;
    position: relative
}

    .can__blog--section .blog--articles .articles--right .article--card.article--wide a .artcle--image .article--category {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #c8a134;
        color: #fff;
        font-size: 14px;
        padding: 5px 10px;
        border-radius: 10px;
        line-height: 1
    }

.can__blog--section .blog--articles .articles--right .article--card.article--wide a .blog--article--content .blog--article--date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #9c9c9c;
    font-size: 14px;
    margin-top: 10px
}

    .can__blog--section .blog--articles .articles--right .article--card.article--wide a .blog--article--content .blog--article--date img {
        margin-left: 10px
    }

.can__blog--section .blog--articles .articles--right .article--card.article--wide a .blog--article--content .blog--article--title {
    color: #707070;
    font-size: 20px;
    margin-top: 10px;
    font-family: LT-Roman
}

.can__blog--section .blog--articles .articles--right .article--card.article--wide a .blog--article--content .blog--article--text {
    color: #9c9c9c;
    font-size: 16px;
    line-height: 1.5
}

.can__blog--section .blog--articles .articles--left {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

@media only screen and (max-width:1250px) {
    .can__blog--section .blog--articles .article--card.article--small {
        margin-bottom: 20px
    }
}

.can__blog--section .blog--articles .article--card.article--small a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 650px;
    height: 160px;
    background: #fff;
    border-radius: 25px;
    padding: 10px;
    transition: .2s ease-out all
}

@media only screen and (max-width:710px) {
    .can__blog--section .blog--articles .article--card.article--small a {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        padding-bottom: 50px
    }
}

.can__blog--section .blog--articles .article--card.article--small a:hover {
    background: #fff7ed;
    transform: translateX(10px)
}

.can__blog--section .blog--articles .article--card.article--small .artcle--image {
    height: 140px;
    width: 180px;
    border-radius: 25px;
    background: no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px
}

@media only screen and (max-width:710px) {
    .can__blog--section .blog--articles .article--card.article--small .artcle--image {
        width: 100%;
        margin-left: 0
    }
}

.can__blog--section .blog--articles .article--card.article--small .artcle--image .article--category {
    margin: 10px auto;
    display: inline-block;
    max-width: 80%;
    background: #c8a134;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 10px;
    line-height: 1
}

.can__blog--section .blog--articles .article--card.article--small .blog--article--content .blog--article--date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #9c9c9c;
    font-size: 14px
}

@media only screen and (max-width:710px) {
    .can__blog--section .blog--articles .article--card.article--small .blog--article--content .blog--article--date {
        margin: 10px 0
    }
}

.can__blog--section .blog--articles .article--card.article--small .blog--article--content .blog--article--date img {
    margin-left: 10px
}

.can__blog--section .blog--articles .article--card.article--small .blog--article--content .blog--article--title {
    color: #707070;
    font-size: 20px;
    font-family: LT-Roman
}

@media only screen and (max-width:710px) {
    .can__blog--section .blog--articles .article--card.article--small .blog--article--content .blog--article--title {
        margin-top: 10px
    }
}

.can__blog--section .blog--articles .article--card.article--small .blog--article--content .blog--article--text {
    color: #9c9c9c;
    font-size: 16px;
    line-height: 1.5
}

.can__numbers--section {
    margin-top: -150px;
    position: relative;
    z-index: 1
}

    .can__numbers--section .contain {
        background: #c8a134;
        border-radius: 25px
    }

    .can__numbers--section .can__numbers-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        border-radius: 25px;
        background: center no-repeat;
        background-size: cover;
        padding-top: 20px
    }

        .can__numbers--section .can__numbers-list a {
            display: block;
            text-decoration: none
        }

        .can__numbers--section .can__numbers-list .number-item {
            list-style-type: none;
            width: 270px;
            margin: 10px;
            padding: 10px;
            text-align: center;
            transition: .3s ease-in-out all;
            border-radius: 25px
        }

            .can__numbers--section .can__numbers-list .number-item:hover {
                box-shadow: 0 0 30px rgba(0,0,0,.1)
            }

            .can__numbers--section .can__numbers-list .number-item img {
                width: 80px;
                background: #fff;
                border-radius: 50%;
                padding: 10px;
                box-shadow: 0 0 20px rgba(0,0,0,.25)
            }

            .can__numbers--section .can__numbers-list .number-item .number-title {
                font-size: 35px;
                font-family: LT-Bold;
                color: #fff
            }

            .can__numbers--section .can__numbers-list .number-item .number-description {
                font-size: 16px;
                color: #fff;
                line-height: 1.5
            }

.can__contact--section {
    position: relative;
    z-index: 0;
    margin-top: -150px;
    padding-top: 170px;
    padding-bottom: 100px;
    background: center no-repeat;
    background-size: cover
}

    .can__contact--section .section--title h2 {
        color: #fff
    }

    .can__contact--section .can__contact--form {
        background: #fff;
        border-radius: 25px;
        padding: 50px;
        box-shadow: 0 0 20px rgba(0,0,0,.25);
        width: 560px;
        margin: 0 auto;
        margin-top: 30px
    }

@media only screen and (max-width:580px) {
    .can__contact--section .can__contact--form {
        width: 90%;
        padding: 20px
    }
}

.can__contact--section .can__contact--form .input--field, .can__contact--section .can__contact--form .select--field {
    display: inline-block;
    margin-left: 20px;
    width: 200px;
    margin-bottom: 20px
}

@media only screen and (max-width:580px) {
    .can__contact--section .can__contact--form .input--field, .can__contact--section .can__contact--form .select--field {
        width: 100%
    }
}

.can__contact--section .can__contact--form .input--field .select2, .can__contact--section .can__contact--form .select--field .select2 {
    width: 100% !important
}

.can__contact--section .can__contact--form .textarea--field {
    width: 425px
}

@media only screen and (max-width:580px) {
    .can__contact--section .can__contact--form .textarea--field {
        width: 100%
    }
}

.can__contact--section .can__contact--form .radio--field {
    margin-top: 40px;
    margin-bottom: 50px
}

.can__footer--section {
    margin-top: 100px
}

    .can__footer--section .main--footer {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 50px 0
    }

@media only screen and (max-width:992px) {
    .can__footer--section .main--footer {
        flex-wrap: wrap;
        justify-content: flex-start
    }
}

.can__footer--section .main--footer .footer--content .footer--logo img {
    height: 158px
}

.can__footer--section .main--footer .footer--content .footer--text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    width: 250px
}

.can__footer--section .main--footer .footer--content .footer--social {
    margin-top: 20px
}

    .can__footer--section .main--footer .footer--content .footer--social .social--list {
        display: flex;
        align-items: center;
        justify-content: flex-start
    }

        .can__footer--section .main--footer .footer--content .footer--social .social--list .social--item a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff7ed;
            margin-left: 10px;
            transition: all .2s ease
        }

            .can__footer--section .main--footer .footer--content .footer--social .social--list .social--item a:hover {
                background-color: #c8a134
            }

            .can__footer--section .main--footer .footer--content .footer--social .social--list .social--item a img {
                width: 20px
            }

.can__footer--section .main--footer .footer--links .footer--links--title {
    color: #c8a134;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: LT-Roman
}

.can__footer--section .main--footer .footer--links .footer--links--list {
    padding-right: 15px
}

    .can__footer--section .main--footer .footer--links .footer--links--list li {
        list-style-type: disc;
        color: #ffffff
    }

        .can__footer--section .main--footer .footer--links .footer--links--list li a {
            color: #ffffff;
            font-size: 16px;
            transition: all .2s ease;
            line-height: 1.5
        }

            .can__footer--section .main--footer .footer--links .footer--links--list li a:hover {
                color: #c8a134
            }

.can__footer--section .main--footer .footer--contact .footer--contact--title {
    color: #c8a134;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: LT-Roman
}

.can__footer--section .main--footer .footer--contact .footer--contact--item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px
}

    .can__footer--section .main--footer .footer--contact .footer--contact--item .footer--contact--icon {
        width: 40px;
        height: 40px;
        background-color: #fff7ed;
        border-radius: 50%;
        margin-left: 10px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .can__footer--section .main--footer .footer--contact .footer--contact--item a, .can__footer--section .main--footer .footer--contact .footer--contact--item p {
        color: #ffffff;
        font-size: 16px;
        line-height: 1.5
    }

        .can__footer--section .main--footer .footer--contact .footer--contact--item a:hover, .can__footer--section .main--footer .footer--contact .footer--contact--item p:hover {
            color: #c8a134
        }

.can__footer--section .footer--copy {
    background: #1D1D1D;
    color: #c8a134;
    font-size: 16px;
    padding: 10px 0;
    text-align: center
}

input.text, input.title, input[type=email], input[type=password], input[type=tel], input[type=text], select, textarea {
    border: none;
    border-bottom: 1px solid
}

.wpcf7-form textarea {
    background-color: transparent;
    border: none !important;
    border-bottom: 1px solid !important
}

.flight--services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.flight--service {
    position: relative;
    width: 70%;
    height: 400px;
    background-color: #f2f2f2;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s ease-in-out;
    margin: 20px
}

    .flight--service:hover {
        transform: scale(1.1);
        z-index: 1
    }

    .flight--service .service-image {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 200px;
        border-radius: 20px 20px 0 0
    }

        .flight--service .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s ease-in-out
        }

    .flight--service:hover .service-image img {
        transform: scale(1.1)
    }

.service-content {
    padding: 20px;
    box-sizing: border-box;
    text-align: center
}

.flight--service h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px
}

.flight--service p {
    font-size: 16px;
    color: #777
}

.can__page--content h1, .can__page--content h2, .can__page--content h3, .can__page--content h4, .can__page--content h5, .can__page--content h6 {
    font-family: lt-bold
}

.mh-waypoint {
    opacity: 1 !important
}
