
/*#region Master*/
:root {
    --main-color: #3051a0;
    --text-black: #2e3135;
    --gray-text: #585858;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    color: var(--text-black);
    font-size: 14px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a, input {
    outline: 0;
    text-decoration: none;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 0.8rem;
    z-index: 99999;
}

a {
    color: var(--main-color);
}

    a:hover {
        text-decoration: none;
        color: var(--main-color);
    }

.contact-us .form-floating > label {
    font-weight: bold;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--main-color);
    opacity: 1;
}

.form-switch .form-check-input {
    margin-top: 2.3px !important;
    width: 2.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(69, 85, 96,1)'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255,1)'/%3e%3c/svg%3e");
}

.input-validation-error {
    border-color: var(--bs-form-invalid-border-color) !important;
    border-width: 1px !important;
    border-style: solid !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

    .input-validation-error:focus {
        border-color: var(--bs-form-invalid-border-color) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .15) !important;
    }

/* Override any border utility classes when validation error occurs */
.form-control.border-0.input-validation-error,
.form-select.border-0.input-validation-error {
    border: 1px solid var(--bs-form-invalid-border-color) !important;
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
    opacity: 1 !important;
}


.modal-loading {
    position: fixed;
    z-index: 1056;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background-color: Black;
    opacity: 0.85;
    -moz-opacity: 0.85;
}


#Progress {
    position: fixed;
    width: 64px;
    height: 64px;
    text-align: center;
    z-index: 1058;
    top: 40%;
    margin: 0 auto;
    display: flex;
    left: 0;
    right: 0;
    color: #fff;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 1rem;
    z-index: 99999;
}

    #back-top a {
        background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
        height: 40px;
        text-decoration: none;
        width: 40px;
        transition: all 200ms linear 0s;
        border-radius: 10px;
        align-items: center;
        display: grid;
    }

        #back-top a:hover, #back-top a:active {
            background-color: var(--main-color);
        }

        #back-top a i {
            color: #fff;
            display: block;
            font-size: 15px;
            margin: 0 auto;
            text-align: center;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.btn-main {
    background-color: var(--main-color);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

    .btn-main:hover {
        border-color: transparent;
        background-color: #a9abae;
        outline: 0;
        color: white;
    }

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 12px;
        letter-spacing: 1px;
        font-weight: 700;
        padding: 8px 20px;
        margin: 0;
        background: #e7f1fd;
        color: #106eea;
        display: inline-block;
        text-transform: uppercase;
        border-radius: 50px;
    }

    .section-title h3 {
        margin: 20px 0 0 0;
        font-size: 24px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .section-title span {
        color: var(--main-color)
    }

    .section-title p {
        margin: 10px auto 0 auto;
        font-weight: 400;
        color: var(--text-black);
    }

/*#endregion*/

/*#region Navbar*/

.navbar {
    background-color: #fff;
    padding: 10px 0;
    transition: all 0.5s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

    .navbar .navbar-brand img {
        width: 100px;
    }

.navbar-nav .nav-item {
    display: block;
    padding: 3px 0;
    border-bottom: 1px solid #ced4da;
}

    .navbar-nav .nav-item .nav-link {
        color: var(--text-black);
        font-size: 14px;
        font-weight: 600;
        position: relative;
        display: block;
        letter-spacing: 2px;
        padding: 5px 20px;
        cursor: pointer;
        transition: 0.3s;
    }

        .navbar-nav .nav-item .nav-link:hover, .navbar-nav .nav-item .nav-link.active {
            color: var(--main-color);
        }

.navbar ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--main-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

/*#endregion*/

/*#region Banner*/

.carousel {
    height: 626px;
}

.banner .carousel-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-position-y: 44%;
    background-position-x: 43%;
    background-size: cover;
    background-image: url(/media/cow-banner.jpg);
}

    .banner .carousel-item::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 3;
        background-color: #000;
        opacity: 0.2;
    }

.banner .carousel-caption {
    left: 5%;
    text-align: left;
    z-index: 3;
    top: 15%;
    z-index: 999;
}

    .banner .carousel-caption label {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .banner .carousel-caption h1 {
        font-size: 45px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .banner .carousel-caption p {
        font-size: 20px;
        margin-bottom: 30px;
    }


/*#endregion*/

/*#region Country Options*/

.country-options {
    padding: 45px 0 0 0;
}

/*#region Template 0 */

.infoblock3 .card {
    padding: 30px;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    margin-bottom: auto;
    border: 1px solid white;
}

.infoblock3 .card-body {
    display: flex;
    flex-direction: column;
}

.infoblock3 .image {
    text-align: center;
    margin-bottom: 10px;
}

    .infoblock3 .image img {
        width: 100px;
    }

.infoblock3 h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 14px;
}

.infoblock3 p {
    line-height: 28px;
    color: var(--gray-text);
}

.infoblock3 label {
    cursor: pointer;
}

.infoblock3 .btn-main {
    font-size: 13px;
    padding: 10px 15px;
}

/*#endregion*/

/*#endregion*/

/*#region About*/

.about {
    padding: 45px 0 0 0;
}

    .about img {
        border-radius: 5px;
    }

    .about h4 {
        font-weight: 600;
        font-size: 20px;
        color: var(--text-black);
    }

    .about p {
        color: var(--gray-text);
        font-size: 14px;
    }

    .about ul, .destination ul {
        list-style: none;
        padding: 0;
        color: var(--gray-text);
    }

        .about ul li, .destination ul li {
            padding-bottom: 15px;
        }

        .about ul svg, .destination ul svg {
            color: var(--main-color);
            font-size: 20px;
            padding-right: 4px;
        }

/*#endregion*/

/*#region Destination*/

.destination {
    padding: 45px 0;
    background-color: #f6f9fe;
}

/*#region Template 0 */

.infoblock4 .destination-tab-btn button {
    border: unset;
    border-radius: 5px;
    height: 100%;
    padding: 20px;
    background-color: #fff;
}

    .infoblock4 .destination-tab-btn button:hover, .infoblock4 .destination-tab-btn button.active {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        transform: scale(1.03);
        transition: all ease-in-out 0.3s;
    }

    .infoblock4 .destination-tab-btn button.active {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.7);
        border: 1px solid var(--main-color);
    }

.infoblock4 .padding-box {
    background: #fff;
    border-radius: 5px;
    height: 100%;
}

.infoblock4 .image {
    text-align: center;
    margin-bottom: 10px;
}

.infoblock4 .padding-box h4 {
    font-weight: 700;
    margin-bottom: unset;
    font-size: 14px;
    color: var(--main-color);
}

.infoblock4 .padding-box p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    color: var(--gray-text);
}

/*#endregion*/

.destination .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--main-color);
    border-radius: 5px;
}

.destination p {
    color: var(--gray-text);
}

.destination .accordion-item {
    border: unset;
}

.destination .accordion-header button {
    color: var(--text-black);
    font-size: 14px;
    border-bottom: unset;
    font-weight: 600;
    z-index: 3;
}

.destination .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%23fff' stroke-width='1'/%3e%3c/svg%3e") !important;
}

.destination .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2338b6ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%230047AB' stroke-width='1'/%3e%3c/svg%3e") !important;
}

.destination .accordion-button:focus {
    box-shadow: unset;
}

.destination .accordion .accordion-body p {
    color: var(--gray-text);
}

.destination .accordion .accordion-body li {
    color: var(--gray-text);
}

/*#endregion*/

/*#region Gallery*/

.gallery {
    padding: 45px 0;
}

/*#endregion*/

/*#region Register*/

.carousel-bottom {
    height: auto !important;
}

    .carousel-bottom .bottom-banner {
        display: flex;
        align-items: stretch;
        min-height: 245px;
    }

    .carousel-bottom .bottom-banner-container {
        display: flex;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        background-repeat: no-repeat;
        flex: 1 1 100%;
        margin-left: auto !important;
    }

    .carousel-bottom .bottom-banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-align: left;
    }

        .carousel-bottom .bottom-banner-bg img {
            display: block;
            width: 100%;
            object-position: center;
            z-index: 1;
            position: relative;
            height: 100%;
            object-fit: cover;
        }

    .carousel-bottom .bottom-banner-content {
        padding: 2.5em;
        align-self: end;
        background: #ffffff;
        margin: 15px;
        flex: 0 1 auto;
        position: relative;
        min-width: 250px;
        z-index: 4;
        margin-left: auto !important;
    }

.block-item {
    display: flex;
}

.block-icon {
    height: 40px;
    width: 39px;
    border: none;
    font-size: 17px;
    line-height: 40px;
    flex: none;
    color: white;
    transition: 0.5s;
    text-align: center;
    margin-right: 20px;
    border-radius: 50%;
    background: var(--main-color);
}

/*#endregion*/

/*#region Contact us*/

.contact-us {
    padding: 45px 0;
    background-color: #f6f9fe;
}

.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.contact-us .message {
    height: 200px;
}

/*#region Template 0 */

.contactBlock1 .address-box {
    padding-left: 30px !important;
}

.contactBlock1 .info-box {
    color: var(--main-color);
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0;
    background: #fff;
}

    .contactBlock1 .info-box svg {
        font-size: 32px;
        color: var(--main-color);
        padding: 8px;
    }

    .contactBlock1 .info-box h3 {
        font-size: 20px;
        color: var(--gray-text);
        font-weight: 700;
        margin: 10px 0;
    }

    .contactBlock1 .info-box p {
        padding: 0;
        margin-bottom: 0;
    }

.contactBlock1 .form-control:focus {
    /*border-color: var(--main-color);*/
    box-shadow: unset;
}

.contactBlock1 .form-switch label {
    color: var(--text-black) !important;
}

/*#endregion*/

/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 25px;
    background-color: #a9abae;
}

    .footer img {
        width: 160px;
        margin-bottom: 20px;
    }

    .footer .container {
        padding-bottom: 25px;
    }

    .footer .footer-block h2 {
        font-size: 16px;
        color: #fff;
        font-weight: 700;
        color: var(--main-color);
    }

    .footer .footer-block p {
        font-size: 13px;
        color: #fff;
    }

    .footer .footer-block a {
        font-size: 15px;
    }

    .footer .footer-block .quick-links, .footer .footer-block .contact-info {
        list-style: none;
        padding-left: 0;
    }

        .footer .footer-block .quick-links li, .footer .footer-block .contact-info li {
            margin-bottom: 5px;
        }

    .footer .footer-block a {
        color: #fff;
        transition: all 300ms linear 0s;
        position: relative;
    }

        .footer .footer-block a:hover {
            color: var(--main-color);
        }

    .footer .header-icon {
        padding: 8px 0px;
    }

    .footer .copyright_area {
        font-size: 12px;
        background: #fff;
        color: var(--text-black);
        text-align: center;
        padding: 30px 15px;
        border-top: 1px solid #ced4da;
    }

        .footer .copyright_area a {
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            color: var(--main-color);
        }

/*#endregion*/

/*#region Privacy Policy*/

.privacy {
    padding-top: 45px; /*80px for navbar height*/
    padding-bottom: 50px;
    position: relative;
}

    .privacy h2 {
        font-size: 30px;
        font-weight: bold;
        color: var(--text-black);
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
        color: var(--gray-text);
    }

/*#endregion*/

/*#region Error Page*/

.error {
    padding: 50px 0;
}

    .error img {
        margin-bottom: 25px;
    }

    .error h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error p {
        font-size: 14px;
    }

/*#endregion*/




/*RESPONSIVE STYLES PER BREAK POINT*/

/* SM Screen (600px and up) */
@media (min-width: 600px) {
}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    /*#region Navbar*/

    .navbar .navbar-brand img {
        width: 150px;
    }

    /*#endregion*/

    /*#region Register*/

    .carousel-bottom .bottom-banner-content {
        padding: 2em;
        align-self: center;
        max-width: 585px;
        margin: 60px 0 60px 60px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 35px;
    }

    /*#endregion*/
}

/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    /*#region Navbar*/

    .navbar-nav .nav-item .nav-link {
        font-size: 16px;
    }

    .navbar-nav .nav-item {
        border-bottom: unset;
    }

    /*#endregion*/

    /*#region Featured product*/

    .infoblock3 h4 {
        font-size: 18px;
    }

    .infoblock3 p {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Destination*/

    .infoblock4 .padding-box h4 {
        font-size: 18px;
    }

    .destination .accordion-header button {
        font-size: 16px;
    }

    .destination .accordion .accordion-body p, .destination .accordion .accordion-body li {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Register*/

    .carousel-bottom .bottom-banner-content {
        max-width: 595px;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

        .footer .container {
            padding-bottom: 50px;
        }

        .footer .footer-block {
            margin-bottom: 0px;
        }

        .footer .copyright_area {
            font-size: 14px;
        }

            .footer .copyright_area a {
                font-size: 14px;
            }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy {
        padding-bottom: 75px;
    }

        .privacy h2 {
            font-size: 40px;
        }

    /*#endregion*/
}

/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .section-title {
        padding-bottom: 40px;
    }

        .section-title h3 {
            font-size: 34px;
        }

        .section-title p {
            margin: 15px auto 0 auto;
            font-size: 16px;
        }

    /*#region Navbar*/

    .navbar .navbar-brand img {
        width: 190px;
    }

    .navbar a:hover::before, .navbar a.active::before {
        visibility: visible;
        width: 100%;
    }

    /*#endregion*/

    /*#region Banner*/

    .banner .carousel-caption {
        top: 19%;
        left: 9%;
        right: 9%;
    }

    .banner .carousel {
        height: 775px;
    }

    .banner .carousel-caption p {
        font-size: 30px;
    }

    .banner .carousel-caption h1 {
        font-size: 90px
    }

    /*#endregion*/

    /*#region About*/

    .about {
        padding: 75px 0 0 0;
    }

        .about h4 {
            font-size: 26px;
        }

        .about p {
            font-size: 16px;
        }

    /*#endregion*/

    /*#region Country Options*/

    .country-options {
        padding: 75px 0 0 0;
    }

    /*#region Template 0 */

    .infoblock3 .card:hover {
        transform: scale(1.08);
        transition: all ease-in-out 0.3s;
        cursor: pointer;
    }

    /*#endregion*/

    /*#endregion*/

    /*#region Destination*/

    .destination {
        padding: 75px 0;
    }

    .infoblock4 .destination-tab-btn button {
        padding: 30px;
    }

    /*#endregion*/

    /*#region Gallery*/

    .gallery {
        padding: 75px 0;
    }

    /*#endregion*/

    /*#region Register*/

    .carousel-bottom .bottom-banner-content {
        max-width: 430px;
    }

    /*#endregion*/

    /*#region Contact us*/

    .contact-us {
        padding: 75px 0;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy {
        padding-top: 178px; /*103px for navbar height*/
    }

        .privacy h2 {
            font-size: 45px;
        }

    /*#endregion*/

    /*#region Error Page*/

    .error h1 {
        font-size: 85px;
    }

    .error h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error p {
        font-size: 18px;
    }

    /*#endregion*/

}

/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {

    /*#region Banner*/

    .carousel {
        height: 844px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 45px;
    }

    /*#endregion*/

}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
    }
}
