/*************************** COPYRIGHT ******************************
This website Developed by UNITECH BD SOFTWARE
Corporate Office: Plot #87, BNS Center (4th floor), Suite No. 507/A,
Sector #07, Uttara Model Town, Dhaka-1230, Bangladesh.
Phone: +88 02 7911423.
Cell: +88 01782 656 388, +88 01977 773 283, +88 01977 773 290.
Email: info@unitechbdsoft.com | admin@unitechbdsoft.com
Website: www.unitechbdsoft.com
*********************************************************************/

/* General Settings
--------------------------------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Hind Siliguri", sans-serif;
    color: #4f5559;
    font-weight: 400;
    box-sizing: border-box;
    font-size: 15px;
}

/* Utility Classess
--------------------------------------------------------------*/
img {
    border: none;
}

.img {
    border: none;
    margin: 0 10px 5px 0;
    float: left;
}

.img3 {
    border: none;
    margin: 6px 10px 10px 0;
    float: left;
}

.main {
    margin: 0 auto;
    max-width: 1200px;
    display: block;
    padding: 0 15px;
}

/* Header
--------------------------------------------------------------*/
.header {
    height: 110px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
}

.header__left-box {
    display: flex;
    align-items: center;
}

.header__logo-link {
    text-decoration: none;
    border-radius: 2px;
    padding-right: 20px;
    border-right: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.header__logo-link:hover,
.header__logo-link:active {
    text-decoration: none;
    outline: none;
}

.header__logo-link h1 {
    font-size: 30px;
    color: #000;
    padding: 0;
    margin-bottom: 5px;
}

.header__logo {
    display: block;
    height: 70px;
    margin-right: 12px;
}

/* NAV LIST (Desktop) */
.header-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.header-nav__list li a:active,
.header-nav__list li a:focus,
.header-nav__list li a:focus-visible {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

/* HEADER NAV LINK (Desktop) */
.header-nav__link:link,
.header-nav__link:visited {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: color 0.3s ease-in-out;
}

.header-nav__link [name="home-outline"] {
    font-size: 20px;
}

.header-nav__link:hover,
.header-nav__link:active {
    color: #407334;
}

.header-nav__item {
    position: relative;
}

.dropdown__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    /* Keep this */
    top: 45px;
    /* CHANGE THIS VALUE! Start with 7rem and increase if needed. */
    left: 0;
    /* Keep this to align with the parent nav item */
    min-width: 180px;
    z-index: 9999;
    /* Ensure it's above other content */
    background-color: #fff;
    /* Good idea to explicitly set a background color */

    /* Hide by default (desktop) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    /* This initial transform will push it down a bit further */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s;
}

.dropdown__menu li a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    display: block;
    padding: 10px 15px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    white-space: nowrap;
}

.dropdown__menu li a:hover,
.dropdown__menu li a:active {
    color: #333;
}

/* Ensure the hover effect brings it to the correct position */
.header-nav__item:hover > .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-login-link {
    text-decoration: none;
    border-radius: 3px;
    background-color: #9F0909;
    transition: all 0.3s;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
}

.header-login-link:hover {
    background-color: #3c599b;
}

/* BTN Mobile NAV (Hamburger/Close button) */
.btn-mobile-nav {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    /* Hidden on desktop by default */
}

.btn-mobile-nav [name="close-outline"] {
    display: none;
}

/* Icon Mobile NAV styling */
.icon-mobile-nav {
    height: 38px;
    width: 38px;
    color: #333;
}

.header__right-box {
    display: flex;
    align-items: center;
}

.header__social-box {
    margin-right: 12px;
}

.header__social-box span {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 4px;
    transition: all .4s ease-in-out;
    border-radius: 3px;
}

.header__social-box span:hover{
    border: 1px solid #333;
}

.header__social-box span:not(:last-child) {
    margin-right: 4px;
}

.header__social-box span a {
    text-decoration: none;
    color: #898989;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__social-box img{
    display: block;
/*     opacity: .5; */
    height: 22px;
}

.header__social-icon {
    font-size: 24px;
    transition: all .4s ease-in-out;
}

.facebook-icon:hover {
    color: #207BF3;
}

.youtube-icon:hover {
    color: #FE083A;
}

.header__phone-box {
    display: flex;
    align-items: center;
    color: #606060;
    font-size: 16px;
    padding-left: 10px;
    border-left: 1px solid #e7e7e7;
    align-self: center;
}

.header-phone__icon-box {
    font-size: 45px;
    color: #606060;
    margin-left: 2px;
    display: flex;
    align-items: center;
}

.header-phone__text-box {
    text-align: right;
	margin-top: 4px;
}

.header-phone__text-box span {
    display: block;
}

.phone-inquiry {
    margin-bottom: 5px;
    font-size: 15px;
}

/* .phone-address {
    font-size: 17px;
    color: #333;
} */

.phone-address {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
}

/* Slider
--------------------------------------------------------------*/
.slider {
    height: 95vh;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: transform 1s;
}

.slide__wrapper {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.09), rgba(0, 0, 0, 0.4));
}

.slide__text-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.5;
}

.slide__text-box h1 {
    margin-bottom: 15px;
    display: inline-block;
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.slide__text-box h1 span {
    font-weight: 500;
}

.slider__btn {
    position: absolute;
    top: 50%;
    z-index: 10;
    border: none;
    background: rgba(248, 248, 248, 0.4);
    color: #333;
    border-radius: 50%;
    height: 3.9rem;
    width: 3.9rem;
    font-size: 2.5rem;
    cursor: pointer;
}

.slider__btn--left {
    left: 6%;
    transform: translate(-50%, -50%);
}

.slider__btn--right {
    right: 6%;
    transform: translate(50%, -50%);
}

.primary-heading {
    line-height: 1.9;
    font-size: 50px;
    font-weight: 800;
    margin: 0;
    padding: 20px 0;
    color: #FFFFFF;
}

.contact-button a {
    color: #fff;
}

/*  About Us
--------------------------------------------------------------*/
#about-us {
    padding: 80px 0;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(227, 227, 227, 0.05), rgba(191, 191, 191, 0.4));
}

.about-us__overlay img {
    position: absolute;
    top: 20%;
    left: 0;
    z-index: -1;
}

.about-us-top-box {
    display: flex;
    color: #444;
}

.heading-secondary {
    margin: 0;
    padding: 0;
    font-size: 40px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 600;
}

.about-us-top-left h2 {
    position: relative;
    margin-bottom: 10px;
}

.about-us-top-left h2::before {
    position: absolute;
    content: "";
    width: 85px;
    height: 2px;
    left: -100px;
    background: #333;
    top: 20px;
    overflow: hidden;
}

.about-us-top-left {
    flex: 0 0 40%;
    padding-right: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.about-us-top-left a {
    font-size: 14px;
}

.btn-link:link,
.btn-link:visited {
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    padding: 8px 30px;
    border-radius: 3px;
    transition: all .2s;
    position: relative;
}

.btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #f7f7f7;
}

.btn-link:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.btn-link:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
}

.btn-link::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
}

.btn--white {
    background-color: #484B50;
    color: #f7f7f7;
}

.btn--white::after {
    background-color: #484B50;
}

.about-us-top-right {
    flex: 0 0 60%;
}

.about-us-top-right-img {
    position: relative;
    height: 450px;
    width: 50%;
    border-radius: 3px;
    background-size: cover;
    object-fit: cover;
}

.about-us-top-right-text-box {
    font-size: 30px;
    z-index: 200;
    position: absolute;
    top: 28%;
    left: 45%;
    font-weight: 300;
}

.about-us-top-right-text-box span {
    display: block;
    color: #d1d1d1;
    text-align: left;
    font-size: 39px;
}

.about-us-top-right-text-box span:not(:last-child) {
    margin-bottom: 15px;
}

.about-message {
    font-size: 70px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.about-us-bottom-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about-us-bottom-left {
    flex: 0 0 50%;
    display: flex;
    justify-content: end;
    margin-top: -100px;
}

.about-us-bottom-left-img {
    height: 450px;
    width: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 3px;
}

.about-us-bottom-right {
    flex: 0 0 50%;
    font-size: 30px;
    color: #000;
    text-align: center;
}

.about-us-bottom-right i {
    color: #333;
}

#what_we_do {
    float: left;
    width: 100%;
    color: #fff;
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/background-images/air-plane-img-1.jpg');
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
}

.what_we_do {
    float: left;
    width: 100%;
}

.what_we_do_left {
    float: left;
    width: 50%;
}

.what_we_do_left h2 {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
    padding: 0;
}

.do_list {
    margin: 0 0 0 70px;
    padding: 70px 60px;
    background: #BE0B32;
    font-size: 15px;
}

.do_list li {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.do_list li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
}

.product-box {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    color: #222;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, .12);
    background: #eee;
}

.product-box img {
    float: left;
    width: 40%;
    height: 320px;
    border-right: 5px #02C945 solid;
}

.package_name {
    float: right;
    width: 60%;
    padding: 30px;
    font-size: 15px;
}

.package_name h3 {
    font-size: 28px;
    padding: 0;
    margin: 0 0 13px;
}

.package_name h3 a {
    color: #222;
    font-weight: 600;
}

.package_details a {
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    float: left;
    background: #555;
}

/* HOME PRODUCTS */
#home_products {
    float: left;
    width: 100%;
    padding: 80px 0;
    background: #1b1b1b;
}

#home_products h2 {
    padding: 0 0 80px 0;
    margin: 0;
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    text-align: right;
}

.service_head {
    color: #ddd;
    font-size: 15px;
    text-align: left;
}

.home_products {
    width: 100%;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.12);
    margin: 0 0 10px;
    background: #fff;
}

.home_products:hover img {
    opacity: 0.6;
}

.home_product_img {
    height: 300px;
}

.home_product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #BE0B32;
    transition: 0.3s;
}

.home_product_name {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #BE0B32;
    text-align: center;
    border-bottom: 3px solid #BE0B32;
}

.home_product_name a {
    color: #1b1b1b;
    padding: 15px 0;
    display: block;
    text-decoration: none;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #BE0B32 50%);
    background-size: 220%;
    transition: all .4s ease-in-out;
}

.home_products:hover .home_product_name a {
    background-position: 100%;
    color: #fff;
    font-weight: 400;
}

.home_product_details h3 {
    color: #CB1508;
    font-weight: 600;
}

.home_product_name img {
    height: 40px;
    text-align: center;
    margin-top: 20px;
}

.service__wrapper {
    width: 100%;
    text-align: justify;
    font-size: 15px;
    float: left;
    color: #222;
    line-height: 26px;
}

.product_gallery {
    float: left;
    width: 100%;
    margin: 0 0 30px;
    position: relative;
}

.product_gallery img {
    width: 100%;
    height: 280px;
    padding: 5px;
}

.each-items img {
    width: 100%;
    display: block;
    height: 280px;
    border: 1px #ddd solid;
    margin: 0 0 20px;
    padding: 5px;
}

.each-items {
    position: relative;
}

.each-items:hover .each-items-when-hover {
    transform: scale(1);
}

.each-items-when-hover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0, 0, 0, 0.7);
    text-align: center;
    transform: scale(0);
    transition: 0.4s;
}

.each-items-when-hover i {
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container {
    width: 100%;
    text-align: justify;
    font-size: 15px;
    padding: 100px 0 100px;
    float: left;
    color: #222;
    line-height: 26px;
}

.who {
    text-align: left;
    padding: 30px 0;
    float: left;
}

.container h3 {
    padding: 0 0 15px 0;
    margin: 0;
    font-size: 23px;
    color: #222;
}

.container h5 {
    padding: 10px 0 15px 0;
    margin: 0;
    font-size: 20px;
    color: #222;
    font-weight: 600;
    text-align: left;
}

.container h5 i {
    padding-right: 3px;
}

.img2 {
    float: right;
    padding: 0 0 10px 10px;
}

/* Section Single Product Meta Info
--------------------------------------------------------------*/
.single-product-meta-info {
    padding-top: 50px;
}

.single-product-meta-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 15px;
    color: #1b1b1b;
}

.single-product-meta-info ul li span {
    font-weight: 600;
    color: #333;
}

.single-product-meta-info ul li:not(:last-child) {
    margin-bottom: 10px;
}

/* Section Slider
--------------------------------------------------------------*/
.slider {
    height: 90vh;
}

.slider__img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-text__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.slider__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.primary-heading {
    text-align: center;
    line-height: 40px;
}

.primary-heading--main {
    font-size: 50px;
    color: #FFFFFF;
    display: block;
    font-weight: 600;
}

.primary-heading--sub {
    font-size: 20px;
    color: #f7f7f7;
    display: block;
    font-weight: 500;
}

/* Section Page Header Banner
--------------------------------------------------------------*/
.section-page-header-banner {
    height: 65vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.page-header-banner__text-box {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70%;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.page-header-banner__text-box h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

/* Page Title Section
--------------------------------------------------------------*/
.container input {
    margin-bottom: 10px;
}

.container textarea {
    margin-bottom: 10px;
}

.contact_form {
    color: #333333;
}

.contact_table {
    float: left;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    text-align: left;
}

.contact_table i {
    color: #333333;
    width: 30px;
    height: 27px;
    text-align: center;
    line-height: 27px;
    border: 1px #ccc solid;
    margin-right: 5px;
    margin-bottom: 5px;
}

.product_img img {
    width: 100%;
    height: 250px;
    border: 1px solid #ddd;
    box-shadow: 0 0 2px #bbb;
    border-bottom: 1px solid #02C945;
}

.product_img2 img {
    width: 100%;
    box-shadow: 0 0 2px #bbb;
}

.products_box {
    width: 100%;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.12);
    margin: 0 0 20px;
    background: #fff;
}

.product_name {
    padding: 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #ed1c24;
    text-align: center;
    background: #fff;
    border-top: none;
    border-bottom: 4px solid #02C945;
}

.product_name a {
    color: #111;
}

.product_details h3 {
    color: #02C945;
    font-weight: 600;
}

.product_name img {
    height: 40px;
    text-align: center;
    margin-top: 20px;
}

.list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list li {
    list-style: none;
    margin-bottom: 5px;
}

.list i {
    color: #555;
    margin-right: 3px;
}

.list2 {
    padding: 0;
    margin: 0 0 20px 20px;
    list-style: none;
}

.list2 li {
    list-style: none;
    margin-bottom: 4px;
    text-align: left;
}

.list2 i {
    color: #555;
    margin-right: 3px;
}

.index_img {
    float: right;
    width: 80%;
}

/*#container {
    float: left;
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.container {
    width: 100%;
    text-align: justify;
    font-size: 15px;
    padding: 20px 0 50px;
    float: left;
    color: #222;
    line-height: 26px;
}

.container h2 {
    padding: 0 0 15px 0;
    margin: 0;
    font-size: 23px;
    color: #222;
    font-weight: 600;
}

.container h5 {
    padding: 10px 0 15px 0;
    margin: 0;
    font-size: 20px;
    color: #222;
    font-weight: 600;
    text-align: left;
}*/

.container h5 i {
    padding-right: 3px;
}

.company-profile-table {
    width: 100%;
    border-bottom: 1px #ddd solid;
    border-left: 1px #ddd solid;
    color: #000;
    font-size: 17px;
}

.company-profile-table td {
    padding: 10px 20px;
    border-top: 1px #ddd solid;
    border-right: 1px #ddd solid;
}

/* Management
--------------------------------------------------------------*/
#management {
    float: left;
    width: 100%;
    padding: 100px 0;
}

/* Section International Tour
--------------------------------------------------------------*/
.section-international-tour {
    float: left;
    width: 100%;
    padding: 60px 0;
}

.section-header__text-box {
    width: 70%;
    margin: 0 auto;
    font-size: 16px;
    color: #333;
}

.section-header__text-box h2 {
    font-size: 35px;
    color: #000;
    font-weight: 400;
}

/*.international-tours {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}*/

.international-tours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .international-tours {
        grid-template-columns: repeat(3, 1fr);
    }
}

.international-tour__box {
    background-color: #FFFFFF;
    flex: 0 0 32%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.international-tour__img-box {
    height: 220px;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
}

.international-tour__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.international-tour__extra-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-place {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    /*color: #008000;*/
    color: #333;
}

.tour-duration {
    display: flex;
    align-items: center;
    font-size: 14px;
    /*color: #008000;*/
    color: #333;
}

.calendar-outline-icon {
    margin-right: 6px;
    font-size: 20px;
}

.location-outline-icon {
    margin-right: 6px;
    font-size: 20px;
}

.international-tour__title-box a {
    text-decoration: none;
    display: inline-block;
    padding: 15px 0 10px;
}

.international-tour__title-box h3 {
    color: #000;
    transition: all .4s ease-in-out;
    font-size: 20px;
    line-height: 1.4;
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.international-tour__title-box a h3:hover {
    color: #008000;
}

.international-tour__price-box h4 {
    font-size: 15px;
    color: #000;
    font-weight: 500;
}

.international-tour__price-box span {
    font-size: 23px;
    color: #63AB45;
    font-weight: 600;
}

.horizontal-btn__box{
    text-align: center;
}

.horizontal-btn__box a {
    text-decoration: none;
    color: #000;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #125FCD;
    transition: all .4s ease-in-out;
    border-radius: 3px;
    display: inline-block;
    margin-top: 50px;
}

.horizontal-btn__box a:hover {
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
}

/* Section Hotel Booking
--------------------------------------------------------------*/
.section-hotel-booking {
    padding: 80px 0;
}

.hotel-booking__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
    gap: 40px;
    margin-top: 50px;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .hotel-booking__content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hotel-booking__box {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.09);
}

.hotel-booking__img-box a {
    display: block;
    text-decoration: none;
    height: 240px;
}

.hotel-booking__img-box a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hotel-booking__text-box {
    padding: 30px 15px;
    font-size: 15px;
    color: #333;
}

.hotel-booking__text-box a {
    text-decoration: none;
}

.hotel-booking__text-box h3 {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
}

.hotel-booking__text-box h3 a {
    text-decoration: none;
    color: #333;
    transition: all .4s ease-in-out;
    margin: 0;
    padding: 0;
}

.hotel-booking__text-box h3 a:hover {
    color: #029F60;
}

.hotel-booking__btn {
    text-decoration: none;
    font-size: 16px;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
    background-color: #00A060;
    padding: 6px 15px;
    margin-top: 10px;
    display: inline-block;
    display: inline-flex;
    align-items: center;
    border-radius: 3px;
}

.hotel-booking__btn:hover {
    color: #fff;
    background-color: #333;
}

.hotel-booking__btn span {
    margin-left: 6px;
}

/* Section Visa CTA
--------------------------------------------------------------*/
.section-visa-cta {
    float: left;
    width: 100%;
}

.section-visa-cta img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.visa-cta__wrapper {
    position: relative;
    height: 70vh;
}

.visa-cta__text-box {
    color: #fff;
    position: absolute;
    top: 45%;
    left: 0;
    width: 50%;
    font-size: 17px;
    transform: translateY(-50%);
}

.visa-cta__text-box h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.visa-cta__text-box h3 {
    color: #fff;
    font-size: 40px;
    padding-left: 15px;
    border-left: 6px solid #fff;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.visa-cta__text-box h3 span {
    font-weight: 600;
}

.visa-cta__text-box a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 3px;
    transition: all .4s ease-in-out;
}

.visa-cta__text-box a:hover {
    background-color: #fff;
    color: #333;
}

/* Section Visa Intro
--------------------------------------------------------------*/
.section-visa-intro {
    padding: 80px 0;
    float: left;
    width: 100%;
    background-color: #f7f7f7;
}

.visa-intro__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visa-intro__img-box {
    flex: 0 0 47%;
    height: 600px;
}

.visa-intro__img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: right;
    border-radius: 3px;
}

.visa-intro__text-box {
    flex: 0 0 47%;
    font-size: 16px;
    color: #333;
}

.visa-intro__text-box p:not(:last-child) {
    margin-bottom: 15px;
}

.visa-intro__text-box h2 {
    font-size: 18px;
    color: #333;
}

.visa-intro__text-box h3 {
    font-size: 35px;
    font-weight: 400;
    border-left: 5px solid #BE0B32;
    padding-left: 20px;
    color: #333;
    margin-bottom: 20px;
}

.visa-intro__text-box h3 span {
    color: #000;
    font-weight: 500;
}

.visa-intro__list-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.visa-intro__list-item li img {
    height: 25px;
    margin-right: 6px;
}

.visa-intro__list-item li:not(:last-child) {
    margin-bottom: 15px;
}

/* Section Immigration Country
--------------------------------------------------------------*/
.section-immigration-country {
    float: left;
    width: 100%;
    padding: 80px 0;
    background-position: center;
}

.section-header-text-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header-text-box h2 {
    font-size: 37px;
    margin: 0;
    border-left: 4px solid #125FCD;
    padding-left: 15px;
    color: #333;
    font-weight: 300;
}

.section-header-text-box h2 span {
    font-weight: 600;
    color: #333;
    display: block;
}

.section-header-text-box a {
    text-decoration: none;
    color: #000;
    padding: 8px 10px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #125FCD;
    transition: all .4s ease-in-out;
    border-radius: 3px;
}

.section-header-text-box a:hover {
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
}

/*.immigration-country__content-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
}

.immigration-country__box {
    flex: 0 0 31%;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 3px 20px 0 rgba(0, 0, 0, 0.05);
}

.immigration-country__img-box {
    overflow: hidden;
}

.immigration-country__img-box a {
    display: block;
    height: 200px;
    text-decoration: none;
}

.immigration-country__img-box a img {
    height: 100%;
    width: 100%;
    transition: all .5s ease-in-out;
    object-fit: cover;
}

.immigration-country__img-box a img:hover {
    transform: scale(1.1);
}

.immigration-country__text-box {
    padding: 25px 20px;
    color: #333;
    font-size: 15px;
    background-color: #fff;
}

.immigration-country__text-box a {
    text-decoration: none;
    color: #515151;
}

.immigration-country__title {
    padding: 0;
    font-size: 25px;
    margin-bottom: 10px;
}

.immigration-country__title a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.immigration-country__title a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #125FCD;
    transition: width 0.3s ease;
}

.immigration-country__title a:hover::after {
    width: 100%;
}

.immigration-country__box:hover .immigration-country__title a::after,
.immigration-country__title a:hover::after {
    width: 100%;
}

.immigration-country__btn {
    text-decoration: none;
    color: #125FCD;
    font-size: 13px;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
}

.immigration-country__btn:hover {
    color: #000;
}

.immigration-country__btn img {
    height: 20px;
    margin-left: 6px;
    color: #ddd;
}*/

.immigration-country__content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .immigration-country__content-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .immigration-country__content-wrapper {
        grid-template-columns: 1fr;
    }
}

.immigration-country__box {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 3px 20px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.immigration-country__img-box {
    overflow: hidden;
}

.immigration-country__img-box a {
    display: block;
    height: 200px;
    text-decoration: none;
}

.immigration-country__img-box a img {
    height: 100%;
    width: 100%;
    transition: all .5s ease-in-out;
    object-fit: cover;
}

.immigration-country__img-box a img:hover {
    transform: scale(1.1);
}

.immigration-country__text-box {
    padding: 25px 20px;
    color: #333;
    font-size: 15px;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.immigration-country__text-box a {
    text-decoration: none;
    color: #515151;
}

.immigration-country__title {
    padding: 0;
    font-size: 25px;
    margin-bottom: 10px;
}

.immigration-country__title a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.immigration-country__title a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #125FCD;
    transition: width 0.3s ease;
}

.immigration-country__title a:hover::after,
.immigration-country__box:hover .immigration-country__title a::after {
    width: 100%;
}

.immigration-country__btn {
    text-decoration: none;
    color: #125FCD;
    font-size: 13px;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
}

.immigration-country__btn:hover {
    color: #000;
}

.immigration-country__btn img {
    height: 20px;
    margin-left: 6px;
    color: #ddd;
}


/* Section Single Post
--------------------------------------------------------------*/
.section-single-post {
    padding: 40px 0 50px;
}

.single-post__box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.single-post__content {
    flex: 0 0 70%;
    line-height: 30px;
    color: #343a40;
    font-size: 16px;
}

.single-post__content {
    text-align: justify;
}

.has-text-align-center {
    text-align: center;
}

.post-slider__wrapper {
    overflow: hidden;
}

.post-slider-img {
    width: 100%;
    height: auto;
    display: block;
}

.post-title {
    color: #000;
    font-size: 26px;
    margin: 20px 0 12px;
    text-align: left;
}

.post-date-meta {
    display: flex;
    align-items: center;
    color: #495057;
    margin: 10px 0;
}

.post-content img {
    margin-bottom: 25px;
}

.single-post__img-silder {
    margin-bottom: 10px;
}

.post-date-meta img {
    height: 15px;
    display: inline-block;
    margin-right: 6px;
}

.post-date-meta p {
    margin: 0;
}

.other-post__content {
    border-top: 1px solid #ddd;
    margin: 30px 0;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

.other-post__previous {
    flex: 0 0 45%;
}

.other-post__next {
    flex: 0 0 45%;
}

.other-post__previous-meta img,
.other-post__next-meta img {
    height: 90px;
    display: inline-block;
    border-radius: 2px;
}

.other-post__previous-meta img {
    margin-right: 15px;
}

.other-post__next-meta img {
    margin-left: 15px;
}

.other-post-title {
    font-size: 16px;
    line-height: 28px;
}

.other-post-title a {
    transition: all .4s;
    text-decoration: none;
    color: #333;
}

.other-post__previous-meta a{
    text-align: left;
}

.other-post__next-meta a{
    text-align: right;
}

.other-post-title a:hover {
    color: #2f9e44;
}

.other-post__previous,
.other-post__next {
    display: flex;
    flex-direction: column;
}

.other-post__next {
    align-items: flex-end;
}

.other-post__prev-button,
.other-post__next-button {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.other-post__prev-button a,
.other-post__next-button a {
    display: block;
    text-decoration: none;
    color: #495057;
    font-size: 13px;
}

.other-post__previous-meta {
    display: flex;
    align-items: center;
}

.other-post__next-meta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    text-align: right;
}

.single-post__sidebar {
    flex: 0 0 25%;
}

.recent-post-advertiser {
    margin-bottom: 10px;
}

.recent-post-advertiser a {
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.recent-post-advertiser a img {
    height: 100%;
    width: 100%;
}

.recent-post-advertiser-facebook {
    margin-bottom: 30px;
}

.recent-post-advertiser-facebook a {
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.recent-post-advertiser-facebook a img {
    height: 100%;
    width: 100%;
}

.recent-posts {
    margin-bottom: 30px;
}

.recent-posts-title {
    font-size: 22px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
}

/*.recent-posts-title::after {
    height: 1px;
    width: 48%;
    background-color: #ddd;
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
}*/

.recent-posts {
    display: flex;
    flex-direction: column;
}

.recent-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.recent-post__img-box {
    flex: 0 0 40%;
}

.recent-post__img-box a {
    display: block;
}

.recent-post__img-box img {
    width: 100%;
    height: 70px;
    border-radius: 3px;
}

.recent-post__img-box img:hover {
    opacity: .9;
}

.recent-post__title-box {
    flex: 0 0 57%;
}

.recent-post__title-box h3 {
    font-size: 14px;
    line-height: 19px;
    margin: 0;
    padding: 0;
}

.recent-post__title-box h3 a {
    transition: all .4s;
    text-decoration: none;
    color: #000;
}

.recent-post__title-box h3 a:hover {
    color: #2f9e44;
}

.recent-post-advertiser-portrait {
    margin-bottom: 30px;
}

.recent-post-advertiser-portrait a {
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.recent-post-advertiser-portrait a img {
    width: 100%;
}



/* Section Visa Info
--------------------------------------------------------------*/
.section-visa-info {
    padding: 50px 0;
    background-color: #f7f7f7;
}

.visa-info__wrapper {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

.visa-info__content {
    flex: 0 0 70%;
}

.visa-info__content h2 {
    color: #000;
    padding: 0;
    margin-bottom: 20px;
}

.visa-info__content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 20px 0;
}

.visa-info__related-country {
    flex: 0 0 23%;
}

.visa-info__related-country h3 {
    margin-bottom: 20px;
    color: #000;
    border-left: 4px solid #125FCD;
    padding-left: 10px;
}

.visa-info__related-country__box {
    margin-bottom: 25px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 3px 20px 0 rgba(0, 0, 0, 0.05);
}

.visa-info__related-country__img-box {
    height: 130px;
}

.visa-info__related-country__img-box a {
    display: block;
    height: 100%;
    text-decoration: none;
    width: 100%;
    overflow: hidden;
}

.visa-info__related-country__img-box a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .4s ease-in-out;
}

.visa-info__related-country__img-box a img:hover {
    transform: scale(1.1);
    opacity: .9;
}

.visa-info__related-country__text-box h4 {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    transition: all .4s ease-in-out;
}

.visa-info__related-country__text-box h4 a {
    padding: 15px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    transition: all .4s ease-in-out;
}

.visa-info__related-country__text-box h4 a:hover {
    color: #E14548;
}

.section-domestic-tour {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.domestic-tours__content {
    margin-top: 60px;
}

.domestic-tour__box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #00A060;
    border-radius: 3px;
    overflow: hidden;
}

.domestic-tour__box:not(:last-child) {
    margin-bottom: 40px;
}

.domestic-tour__img-box {
    flex: 0 0 45%;
}

.domestic-tour__img-box a {
    text-decoration: none;
    height: 200px;
}

.domestic-tour__img-box a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.domestic-tour__text-box {
    flex: 0 0 55%;
    padding: 15px 40px;
    color: #f7f7f7;
    font-size: 15px;
    line-height: 1.6;
}

.domestic-tour__text-box h3 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.domestic-tour__text-box h3 a {
    text-decoration: none;
    color: #fff;
}

.domestic-tour__price {
    color: #fff;
    font-size: 20px;
    margin: 15px 0 5px;
    display: flex;
    align-items: center;
}

.domestic-tour__price span {
    margin-left: 6px;
}

.domestic-tour__duration {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.domestic-tour__duration span {
    margin-left: 6px;
}

.domestic-tour__btn {
    text-decoration: none;
    border: 1px solid #a1a1a1;
    color: #fff;
    padding: 6px 22px;
    display: inline-block;
    border-radius: 3px;
    transition: all .4s ease-in-out;
}

.domestic-tour__text-box a {
    text-decoration: none;
}

.domestic-tour__btn:hover {
    background-color: #333;
    border: 1px solid #333;
    color: #fff;
}

/* Section Blog
--------------------------------------------------------------*/
.section-blog {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.blog-section-title-box {
    width: 90%;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 15px;
    color: #333;
}

.blog-section-title-box h2 {
    font-size: 28px;
    font-weight: 500;
    color: #333;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.blog__item {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.03);
    background-color: #fff;
}

.blog-item__img-box {
    overflow: hidden;
}

.blog-item__img-box img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.blog-item__img-box:hover img {
    transform: scale(1.1);
    filter: brightness(80%);
}

.blog-item__img-box a {
    display: block;
    height: 230px;
}

.blog-item__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-item__text-box {
    padding: 20px 20px;
    line-height: 1.6;
    color: #333;
}

.blog-item__text-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-item__text-box h3 a {
    text-decoration: none;
    color: #000;
}

/*--------------------------------------------------------------
>>> Section Contact
---------------------------------------------------------------*/
.section-contact {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact__box__text-box {
    color: #7D778D;
}

.contact__box {

}

.contact-heading-text-box {
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
    font-size: 17px;
}

.contact-heading-text-box h2 {
    font-size: 30px;
    margin-bottom: 5px;
}

.contact__text-box {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.contact__text-box > * {
    flex: 0 0 32%;
    padding: 40px;
    color: #ffffff;
    background-color: #002549;
    border-radius: 3px;
    text-align: center;
}

.contact__info-icon-box i {
    font-size: 38px;
    margin-bottom: 20px;
    color: #f7f7f7;
}

.contact__info-text-box {
    font-size: 17px;
}

.contact__info-text-box h4 {
    font-size: 27px;
    margin-bottom: 10px;
}

/* Footer
--------------------------------------------------------------*/
.site-footer {
    float: left;
    width: 100%;
    padding: 50px 0;
    background-color: #1b1b1b;
}

.site-info {
    font-size: 15px;
    color: #d3d3d3;
}

.footer-left {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #333;
    line-height: 1.6;
}

.footer-left a {
    display: inline-block;
    text-decoration: none;
}

.footer-left a img {
    height: 90px;
    padding: 5px 30px;
    border-radius: 3px;
    background-color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-center {
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #333;
}

.footer-center ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-center ul li:not(:last-child) {
    margin-bottom: 14px;
}

.footer-center ul li a {
    text-decoration: none;
    color: #ddd;
}

.footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-right ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-right ul li i {
    margin-right: 5px;
}

.footer-right ul li a {
    text-decoration: none;
    color: #ddd;
}

.footer-center h3,
.footer-right h3 {
    color: #ddd;
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
}

#wrapper {
    margin: 0;
    padding: 70px 0 100px;
    width: 100%;
    float: left;
}

.about-us h2 {
    font-size: 35px;
    font-family: 'Poppins', sans-serif;
}

.about-us h4 {
    letter-spacing: 7px;
    font-family: 'Poppins', sans-serif;
}

.about-us-img {
    float: left;
    width: 100%;
}

.about-us-img img {
    float: left;
    width: 100%;
    height: 270px;
}

.main_body {
    margin: 0 auto;
    max-width: 1170px;
    display: block;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.8);
}

.main_body h3 {
    font-size: 26px;
    margin-bottom: 20px;
    padding: 0;
    color: #157700;
    font-weight: 600;
}

#who-we-are {
    float: left;
    width: 100%;
    padding: 0 0 50px;
}

.box-1 {
    float: left;
    width: 100%;
    text-align: center;
    background: #ddd;
    padding: 50px 10px;
    color: #fff;
}

.box-2 {
    float: left;
    width: 100%;
    text-align: center;
    background: #ddd;
    padding: 50px 10px;
    color: #fff;
}

.box-3 {
    float: left;
    width: 100%;
    text-align: center;
    background: #ddd;
    padding: 50px 10px;
    color: #fff;
}

.box-1 i {
    font-size: 50px;
}

.box-2 i {
    font-size: 50px;
}

.box-3 i {
    font-size: 50px;
}

.clients-list {
    color: #111;
    line-height: 24px;
}

.clients-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.clients-list li {
    margin: 8px 0;
    padding: 10px;
    list-style: none;
    font-size: 16px;
    border: 1px #ddd solid;
    background: #eeefef;
    width: 100%;
    text-align: left;
}

.clients-list i {
    text-align: left;
    margin-right: 8px;
}

.contact-area {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 3px;
    background: #eee;
    color: #444;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.12);
    font-size: 16px;
}

.contact-area img {
    border: 1px solid #F0F0F0;
    height: 80px;
    margin: 0 0 20px;
}

.contact-area-2 {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 3px;
    background: #eee;
    color: #444;
    box-shadow: 2px 4px 9px 0 rgba(0, 0, 0, 0.12);
    font-size: 16px;
}

.contact-area-2 img {
    border: 1px solid #F0F0F0;
    height: 80px;
    margin: 0 0 20px;
}

.contact-icon {
    padding: 0 0 20px 0;
}

.contact-icon i {
    font-size: 2.5em;
    border: 1px #fff solid;
    width: 70px;
    height: 70px;
    line-height: 69px;
    border-radius: 50%;
}

.contact-form {
    width: 100%;
}

.contact-form input {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 2px;
    height: 45px;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 2px;
    height: 200px;
}

.contact-form .btn {
    width: 100px;
    border-radius: 2px;
    padding: 11px 0 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.profile_table {
    border: 1px solid #ccc;
    border-right: none;
    border-bottom: none;
}

.profile_table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px 15px;
}

/* Section Why Us
--------------------------------------------------------------*/
.section-why-us {
    width: 100%;
    float: left;
    padding: 80px 0;
    background-color: #f8f8f8;
}

.why-us__wrapper {
    display: flex;
    justify-content: space-between;
}

.why-us__left {
    flex: 0 0 48%;
    font-size: 16px;
}

.why-us__left h2 {
    font-size: 14px;
    background-color: #fff;
    color: #333;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 0;
}

.why-us__left h3 {
    font-size: 40px;
    line-height: 1.2;
    color: #63AB45;
}

.why-us__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.why-us__list li {
    color: #333;
    flex: 0 0 48%;
    margin-bottom: 20px;
    padding: 15px 10px;
    font-weight: 500;
    font-size: 19px;
    border-bottom: 1px #c0c0c0 solid;
    display: flex;
    align-items: center;
    transition: all .4s ease;
}

.why-us__list li:hover {
    border-bottom: 1px #63AB45 solid;
}

.why-us__list li img {
    height: 40px;
    margin-right: 10px;
    display: block;
}

.why-us__right {
    height: 500px;
    flex: 0 0 45%;
}

.why-us__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* About Hero
--------------------------------------------------------------*/
.about-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    height: 100vh;
    text-align: center;
    color: #fff;
}

.about-hero h3 {
    font-size: 55px;
}

.about-hero p {
    padding: 15px 150px;
    font-size: 27px;
}

#about-hero-bottom {
    display: flex;
    width: 100%;
    background: #00A060;
    padding: 50px 0;
    font-size: 30px;
    text-align: center;
    color: #fff;
}

#about-details {
    display: flex;
}

.about-details-left {
    width: 50%;
    padding: 40px 40px 40px 100px;
    background: #eee;
    text-align: justify;
}

.about-details-left h3 {
    font-size: 35px;
    line-height: 1.5;
    padding-bottom: 20px;
    text-align: left;
}

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

.about-details-right {
    width: 50%;
}

.about-details-right img {
    width: 100%;
    min-height: 520px;
}

#our-promise {
    float: left;
    width: 100%;
    padding-top: 300px;
    background-size: cover;
}

.our-promise {
    float: right;
    width: 70%;
    padding: 60px;
    background: #02C945;
    color: #fff;
}

.our-promise h3 {
    font-size: 41px;
    padding-bottom: 20px;
}

.our-promise ul {
    float: left;
    margin: 0;
    padding: 0;
}

.our-promise ul li {
    list-style: none;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.our-promise ul li i {
    margin-right: 10px;
}
