@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,700;1,600&display=swap');
body
{
    font-family: 'Archivo', sans-serif;

}
body.hidden-scrolling{
    overflow-y: hidden;
}
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    list-style: none;
    margin:0;
    padding:0;
}
a{
    text-decoration: none;
}
/*header*/
.header{
    position: absolute;
    width: 100%;
    left:0;
    top:1rem;
    z-index: 99;
    transition: all .3s ease-in-out;
}
.sticky
{
    background-color: #fff;
    box-shadow: 2px 2px 10px -5px #1b3665;
}
#header .menu-item a.active {
    border-top: 3px solid #3c6ab9;
    color: #3c6ab9;
}
#header .menu-item-has-children a.active
{
    border-top: none;
}
.header-main{
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border-radius: 4px;
}
.header .logo{
    padding: 0 30px;
    margin-left: 20px;
}
.header .mobile-logo{
    display: none;
}
.header .logo img
{
    width: 175px;
    max-width: 200px;
}
.header .logo a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .nav-menu{
    padding: 0 15px;
}
.header .menu
{
    display: flex;
    align-items: center;
    flex-direction: row;
}
.header .menu > .menu-item{
    display: inline-block;
    margin-left: 20px;
    position: relative;
}
.header .menu > .menu-item:last-child
{
    margin-right: 20px;
}
.header .menu > .menu-item > a{
    display: block;
    border-top: 3px solid transparent;
    padding: 12px 0;
    font-size: 16px;
    color: #000000;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left:5px;
    pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
    content:'';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top:50%;
    background-color: #000000;
    height: 2px;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
    background-color: #3c6ab9;
}
.header .menu > .menu-item > a .plus:after{
    transform: translate(-50%,-50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    color: #3c6ab9;
}
.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left:0;
    top:100%;
    background-color: #ffffff;
    padding: 10px 0;
    border-top: 3px solid #3c6ab9;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity:0;
    visibility: hidden;
}
.mobile-lang
{
    display: none;
}

.hide {
    top: -100px !important;
}
@media(min-width: 992px){
    .header .menu > .menu-item-has-children:hover > .sub-menu{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .header .menu > .menu-item-has-children:hover > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
    }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
    display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.header .open-nav-menu{
    height: 34px;
    width: 40px;
    margin-right: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}
.header .open-nav-menu span:before{
    top:-7px;
}
.header .open-nav-menu span:after{
    top:7px;
}
.header .close-nav-menu{
    height: 40px;
    width: 40px;
    background-color: transparent;
    margin:0 0 15px 0;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}
.header .close-nav-menu img{
    width: 16px;
}
.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity:0;
    transition: all 0.3s ease;
}


.dropbtn {
    background-color: transparent;
    color: #000;
    border-radius: 10px;
    padding: 10px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}
.dropbtn img,
.lang-content a img
{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.dropbtn:hover, .dropbtn:focus {
    background-color: #dddddd;
    color: #000 !important;
}
.lang-content {
    display: none;
    position: absolute;
    min-width: 100%;
    max-width: 160px;
    background-color: #dadada;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
}
.lang-content a {
    color: black;
    font-size: 16px;
    padding: 10px 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all .2s ease;
}
.lang-content a:hover
{
    background-color: #c2c2c2;
}
.show {display:block;}

/* responsive */

@media(max-width: 991px){
    .header .menu
    {
        display: block;
    }
    .header .menu-overlay.active{
        visibility: visible;
        opacity: 1;
    }
    .header .nav-menu{
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top:0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }
    .header .nav-menu.open{
        visibility: visible;
        right: 0px;
    }
    .header .menu > .menu-item{
        display: block;
        margin:0;
    }
    .header .menu > .menu-item-has-children > a{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .menu > .menu-item > a{
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }
    .header .menu > .menu-item:first-child > a{
        border-top: 1px solid #333333;
    }
    .header .menu > .menu-item > a .plus:before,
    .header .menu > .menu-item > a .plus:after{
        background-color: #ffffff;
    }
    .header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu{
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border:none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top:auto;
        max-height: 0;
        overflow: hidden;
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a{
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }
    .header .close-nav-menu,
    .header .open-nav-menu{
        display: flex;
    }
    .header-main
    {
        justify-content: space-between;
    }
    .header .desktop-logo
    {
        display: none;
    }
    .header .mobile-logo
    {
        display: block;
        margin-left: 15px;
        padding: 0;
    }
    .header .lang-btn
    {
        margin: 0;
        border: 1px solid #333333;
        margin-top: 1rem !important;
    }
    .header .lang-btn>a
    {
        padding: 12px 15px !important;
        font-weight: 600;
    }
    .dropbtn
    {
        justify-content: flex-start;
    }
    .lang-content a
    {
        padding: 12px 15px;
        font-weight: 600;
        color: #fff;
    }
    .dropbtn
    {
        background-color: transparent;
        border: unset !important;
        border-radius: 0;
        color: #ffffff;
        gap: 10px;
    }
    .dropbtn:hover, .dropbtn:focus {
        background-color: unset;
        color: #fff !important;
    }
    .header .menu > .menu-item:hover > .dropbtn
    {
        color: #fff !important;
    }
    .lang-content
    {
        background-color: #222222;
        top: 0;
        width: 100%;
        max-width: unset;
        height: 100%;
        border: unset;
        border-radius: 0;
        padding-top: 50px;
    }
    .lang-content .close-lang
    {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 20px;
    }
    .lang-content .close-lang img
    {
        width: 20px;
        height: 20px;
    }
    .desktop-lang
    {
        display: none !important;
    }
    .mobile-lang
    {
        display: flex;
    }
    #header .menu-item a.active {
        border-top: none;
        color: #3c6ab9;
    }
    #header .mobile-lang a.active {
        border-top: none;
        color: #ffffff;
    }

}
@media (min-width: 991px) and (max-width: 1400px){
    .header .menu > .menu-item > a
    {
        font-size: 12px;
    }
    .header .menu > .menu-item {
        margin-left: 8px;
    }
    .header .menu > .menu-item > a .plus
    {
        width: 10px;
        height: 10px;
    }

}

/*CAROUSEL SECTION*/

.carousel-item
{
    height: 850px;
}
.carousel-item img,
.carousel-item video
{
    height: 100%;
    object-fit: cover;
}
.carousel-caption
{
    top: 50%;
    left: 50%;
    right: unset;
    bottom: unset;
    transform: translate(-50%, -50%);
}
.carousel-title ,
.carousel-dsc
{
    text-shadow: 2px 2px 5px #000;
}
.carousel-title
{
    font-size: 50px;
    text-transform: uppercase;
}
.carousel-dsc
{
    font-size: 28px;
}

@media(max-width: 991px){
    .carousel-item {
        height: 800px;
    }
    .carousel-caption
    {
        width: 80%;
    }
    .carousel-title
    {
        font-size: 35px;
    }
    .carousel-dsc
    {
        font-size: 18px;
    }
}



.tab-menu
{
    width: 500px;
    max-width: 500px;
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    top: 60%;
    right: 10%;
    box-shadow: 2px 2px 15px -5px #000;
    z-index: 2;
}
.tabcontent-inner
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
.tabcontent-inner .item
{
    width: 100%;
}
.tab-menu .tab-content
{
    min-height: 100px;
}
.tabcontent-inner input,
.tabcontent-inner select
{
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
    border: 3px solid transparent;
}
.tabcontent-inner option
{
    color: #757575 !important;
}
.tab-content .form-select:focus {
    border-color: #000000;
    border: 3px solid;
    outline: 0;
    box-shadow: unset;
}
.tabcontent-inner input[type=text] {
    background-color: #f1f1f1;
    width: 100%;
}
.tabcontent-inner form
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}
.calendar-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    width: 25px;
    height: 25px;
    background-image: url("/img/deadline.png");
    background-size: cover;
}
.tab-menu .date-search
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.tab-menu .date-search .ds-item
{
    width: 13em;
}
.tab-menu a
{
    background-color: #000;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    padding: 10px 2rem;
    display: block;
    text-align: center;
    transition: all .3s ease-in-out;
}
.tab-menu a:hover
{
    background-color: #353535;
}
.tab-menu .nav-link
{
    color: #353535;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    border-bottom: 2px solid #000000;
    border-radius: unset;
    background-color: unset;
    color: #000;
    font-weight: 600;
}
.nav-link:focus, .nav-link:hover {
    color: #000;
}
.tab-content .buttons
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
.tab-content .buttons .pdf-btn a
{
    background-color: #4284b4;
}
.tab-content .buttons .pdf-btn a:hover
{
    background-color: #1b3665;
}

@media(max-width: 991px){
    .tab-menu{
        width: 300px;
        max-width: 300px;
        position: absolute;
        background-color: #fff;
        border-radius: 10px;
        padding: 30px 20px;
        top: 95%;
        left: 50%;
        right: unset;
        transform: translate(-50%, -95%);

    }

    .tab-menu img
    {
        width: 80%;
    }
    .tab-menu .buttons
    {
        gap: 1rem;
        justify-content: space-between;

    }
    .tab-menu .buttons a {
        width: 100%;
        padding: 10px 1rem;
        width: 100%;
        display: flex;
        font-size: 11px;
        justify-content: center;
        align-items: center;
    }
    .s-search-btn {
        width: 100%;
    }
}

#prop .wrapper,
#prop ul li
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all .3s ease-in-out;
    position: relative;
}
#prop .head h2
{
    font-size: 50px;
    color:  #3c6ab94d;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}
#prop ul
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
}
#prop img
{
    width: 70px;
    margin: 20px;
    transition: all .3s ease-in-out;
    z-index: 2;
}
#prop ul li::before
{
    position: absolute;
    content: "";
    left: 50%;
    top: 25%;
    transform: translate(-50%, -25%);
    width: 0;
    height: 0;
    border-radius: 0%;
    background-color: #3c6ab94d;
    z-index: 1;
    transition: all .3s ease;
}
#prop ul li:nth-child(even):before
{
    background-color: #b93c3c4d;
}
#prop ul li:hover::before
{
    width: 100px;
    height: 100px;
    top: 5%;
    transform: translate(-50%, -5%);
}
#prop ul li:hover img
{
    scale: 1.1;
}
#prop ul p
{
    font-size: 25px;
    line-height: 33px;
    font-weight: 500;
    color: #1b3665;
    text-align: center;
}
#prop ul span
{
    color: #858585;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
}
@media(max-width: 991px){
    #prop ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    #prop ul li::before
    {
        width: 100px;
        height: 100px;
        top: 5%;
        transform: translate(-50%, -5%);
    }
    #prop ul p {
        font-size: 20px;
    }
    #prop .head
    {
        margin-bottom: 1rem !important;
    }
    #prop .head h2 {
        font-size: 30px;
        margin-bottom: 1rem;
    }
}

#home-banner
{
    background-image: url("/img/home-banner.jpg");
    background-position: center;
    background-size: cover;
    padding: 150px 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}
#home-banner .overlay
{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.35);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
#home-banner .wrapper
{
    z-index: 3;
    position: relative;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
#home-banner p
{
    font-size: 35px;
    color: #fff;
}
#home-banner span
{
    font-size: 16px;
    color: #dddddd;
}
#home-banner a
{
    padding: 10px 2rem;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    transition: all .3s ease-in-out;
}
#home-banner a:hover
{
    color: #1b3665;
    background-color: #fff;
}
@media(max-width: 991px){
    #home-banner
    {
        padding: 80px 0;
        background-attachment: unset;
    }
}
@media(max-width: 1200px){
    #home-banner
    {
        background-attachment: unset;
    }
}
#hometext,
.agent-page-content
{
    border-top: 5px solid #1b3665;
        background-image: url("/img/services-bg-2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#hometext .container
{
    display: flex;
    justify-content: center;
    align-items: center;
}
#hometext .wrapper
{
    width: 991px;
    max-width: 991px;
}
#hometext h3
{
    font-size: 35px;
    color: #203d70;
    text-align: center;
    margin-bottom: 2rem;
}
@media(max-width: 991px){
    #hometext
    {
        background-position: left center;
        background-attachment: unset;
    }
    .agent-page-content
    {
        background-position: left center;
    }
}


/* News Slider */

#news
{
    background-image: url(/img/bg2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#news .news-title
{
    font-size: 50px;
    color: #3c6ab94d;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}
.post-slide{
    overflow:hidden;
    margin-right:15px;
    background-color:#fff!important;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.post-slide .post-img{
    float:left;
    width:50%;
    position:relative;
}
.post-slide .post-img a
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}
.post-slide .post-img img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.post-slide .post-date{
    background:#ff8a2d;
    color:#fff;
    position:absolute;
    top:0;
    right:0;
    display:block;
    padding:2% 3%;
    width:60px;
    height:60px;
    text-align:center;
    transition:all .5s ease;
}
.post-slide .date{
    display:block;
    font-size:20px;
    font-weight:700;
}
.post-slide .month{
    display:block;
    font-size:11px;
    text-transform:uppercase;

}
.post-slide .post-review{
    padding:5% 3% 1%;
    border-top:3px solid #4977c7;
    width: 50%;
}
.post-slide:hover .post-review{
    border-top-color:#ff8a2d;
}
.post-slide .post-title{
    margin:0 0 10px 0;
}
.post-slide .post-title a{
    font-size:14px;
    font-weight: 700;
    color:#555555;
    text-transform:uppercase;
}
.post-slide .post-title a:hover{
    text-decoration:none;
    color: #000;
}

.post-slide .post-description{
    font-size:13px;
    line-height:21px;
    color:#444454;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}
.owl-theme .owl-controls{
    margin-top:30px;
}
.owl-theme .owl-controls .owl-page span{
    background:#fff;
    border:2px solid #4977c7;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background:#4977c7;
}
@media only screen and (max-width:991px){
    #news .news-title
    {
        font-size: 30px;
        margin-bottom: 1rem;
    }
    .post-slide
    {
        flex-direction: column;
    }
    .post-slide .post-img{
        width:100%;
    }
    .post-slide .post-review{
        width:100%;
        border-bottom:4px solid #ff8a2d;
    }
    .post-slide .post-bar:before{
        left:0;
    }
    .post-slide .post-bar:after{
        left:25px;
    }
}


footer .fab
{
    font-size: 20px;
    transition: all .2s ease-in-out;
}
footer .link-secondary:focus, .link-secondary:hover {
    color: #1b3665!important;
}
footer .link-secondary:hover .fab
{
    scale: 1.2;
}
.footer-links a:hover
{
    text-shadow: 1px 1px 20px #000;
}


/*PAGES STARTS*/
.page-header
{
    background-image: url(/img/page-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-header .wrapper
{
    height: 300px;
    max-height: 300px;
    padding-bottom: 10px;
    display: flex;
    align-items: flex-end;
}
.page-header .page-title
{
    font-size: 45px;
    color: #fff;
    text-shadow: 0 0 1px #000;
}
.page-header .page-breadcrumb,
.page-header .page-breadcrumb>*
{
    font-size: 14px;
    color: #dddddd;
    letter-spacing: 1px;
}

.page-content .wrapper
{
    padding: 30px 0;
}
.page-content
{
    color: #585858;
    font-size: 16px;
    line-height: 24px;
    border-bottom: 1px solid #dddddd;
}
.timeline-wrapper h4
{
    font-size: 40px;
    color: #3c6ab97a;
    letter-spacing: 1px;
    text-transform: uppercase;

}
.main-timeline{position:relative;    padding: 100px 0 0;}
.main-timeline:before{content:"";width:5px;height:100%;border-radius:20px;margin:0 auto;background:#242922;position:absolute;top:0;left:0;right:0}
.main-timeline .timeline{display:inline-block;margin-bottom:90px;position:relative; width: 100%;}
.main-timeline .timeline:before{content:"";width:20px;height:20px;border-radius:50%;border:4px solid #fff;background:#4977c7;position:absolute;top:0;left:50%;z-index:1;transform:translate(-50%,-50%)}
.main-timeline .timeline-icon{display:inline-block;width:130px;height:130px;border-radius:50%;border:3px solid #4977c7;padding:13px;text-align:center;position:absolute;top:0;left:33%;transform:translateY(-50%)}
.main-timeline .timeline-icon i{display:block;border-radius:50%;background:rgba(73, 119, 199, 0.5);font-size:64px;color:#fff;line-height:100px;z-index:1;position:relative}
.main-timeline .timeline-icon:after,.main-timeline .timeline-icon:before{content:"";width:100px;height:4px;background:#4977c7;position:absolute;top:50%;right:-100px;transform:translateY(-50%)}
.main-timeline .timeline-icon:after{width:70px;height:50px;background:#fff;top:89px;right:-30px}
.main-timeline .timeline-content{width:50%;padding:0 50px;float:right; padding-bottom: 20px;top: 0;position:relative}
.main-timeline .timeline-content:before{content:"";width:70%;height:100%;border:3px solid #4977c7;border-top:none;border-right:none;position:absolute;top:0;left:35px}
.main-timeline .timeline-content:after{content:"";width:37px;height:3px;background:#4977c7;position:absolute;top:0;left:0}
.main-timeline .title{font-size:20px;font-weight:600;color:#4977c7;text-transform:uppercase;margin:0 0 5px}
.main-timeline .description{display:inline-block;font-size:16px;color:#404040;line-height:20px;letter-spacing:1px;margin:0}
.main-timeline .timeline:nth-child(even) .timeline-icon{left:auto;right:33%}
.main-timeline .timeline:nth-child(even) .timeline-icon:before{right:auto;left:-100px}
.main-timeline .timeline:nth-child(even) .timeline-icon:after{right:auto;left:-30px}
.main-timeline .timeline:nth-child(even) .timeline-content{float:left}
.main-timeline .timeline:nth-child(even) .timeline-content:before{left:auto;right:35px;transform:rotateY(180deg)}
.main-timeline .timeline:nth-child(even) .timeline-content:after{left:auto;right:0}
.main-timeline .timeline:nth-child(even) .timeline-content:after,.main-timeline .timeline:nth-child(even) .timeline-icon i,.main-timeline .timeline:nth-child(even) .timeline-icon:before,.main-timeline .timeline:nth-child(even):before{background:#f9850f}
.main-timeline .timeline:nth-child(even) .timeline-icon{border-color:#f9850f}
.main-timeline .timeline:nth-child(even) .title{color:#f9850f}
.main-timeline .timeline:nth-child(even) .timeline-icon i {background-color: rgba(249, 132, 15, 0.5);}
.main-timeline .timeline:nth-child(even) .timeline-content:before{border-left-color:#f9850f;border-bottom-color:#f9850f}
@media only screen and (max-width:1200px){.main-timeline .timeline-icon:before{width:50px;right:-50px}
    .main-timeline .timeline:nth-child(even) .timeline-icon:before{right:auto;left:-50px}
    .main-timeline .timeline-content{margin-top:0}
}
@media only screen and (max-width:990px){.main-timeline .timeline{margin:0 0 80px}
    .main-timeline .timeline-icon{left:25%}
    .main-timeline .timeline:nth-child(even) .timeline-icon{right:25%}
    .main-timeline .timeline-content{margin-top:0}
}
@media only screen and (max-width:767px){.main-timeline{padding-top:50px}
    .main-timeline:before{left:80px;right:0;margin:0}
    .main-timeline .timeline{margin-bottom:70px}
    .main-timeline .timeline:before{top:0;left:83px;right:0;margin:0}
    .main-timeline .timeline-icon{width:60px;height:60px;line-height:40px;padding:5px;top:0;left:0}
    .main-timeline .timeline:nth-child(even) .timeline-icon{left:0;right:auto}
    .main-timeline .timeline-icon:before,.main-timeline .timeline:nth-child(even) .timeline-icon:before{width:25px;left:auto;right:-25px}
    .main-timeline .timeline-icon:after,.main-timeline .timeline:nth-child(even) .timeline-icon:after{width:25px;height:30px;top:44px;left:auto;right:-5px}
    .main-timeline .timeline-icon i{font-size:30px;line-height:45px}
    .main-timeline .timeline-content,.main-timeline .timeline:nth-child(even) .timeline-content{width:100%;padding-left:130px;padding-right:5px}
    .main-timeline .timeline:nth-child(even) .timeline-content{float:right}
    .main-timeline .timeline-content:before,.main-timeline .timeline:nth-child(even) .timeline-content:before{width:50%;left:120px; top: -2px;}
    .main-timeline .timeline:nth-child(even) .timeline-content:before{right:auto;transform:rotateY(0)}
    .main-timeline .timeline-content:after,.main-timeline .timeline:nth-child(even) .timeline-content:after{left:85px; top:-2px;}
}
@media only screen and (max-width:479px){.main-timeline .timeline-content,.main-timeline .timeline:nth-child(even) .timeline-content{padding-left:110px}
    .main-timeline .timeline-content:before,.main-timeline .timeline:nth-child(even) .timeline-content:before{left:99px}
    .main-timeline .timeline-content:after,.main-timeline .timeline:nth-child(even) .timeline-content:after{left:65px}
}


.contact-page-content .wrapper
{
    position: relative;
}
.contact-page-content .map{
    width: 100%;
    height: 80vh;
    position: relative;
}
.contact-page-content .map:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, rgba(7, 45, 72, 0.8), rgba(195, 195, 195, 0.3));
}

.contact-page-content .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 0 60px;
}


.contact-page-content .contact{
    width: 80%;
    max-width: 1080px;
    display: flex;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.28);
    border-radius: 5px;
    overflow: hidden;
}


.contact-page-content .other{
    width: 60%;
    background-image: url(https://images.unsplash.com/photo-1485119584289-30ca2b38c67e?dpr=1&auto=format&fit=crop&w=1500&h=1000&q=80&cs=tinysrgb&crop=);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


.contact-page-content .other:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, rgb(36, 51, 66), rgba(36, 51, 66, 0.81));
}

.contact-page-content .form{
    width: 40%;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;

}
.contact-page-content .form h1{
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}
.contact-page-content .form form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.contact-page-content .flex-rev {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 10px;
    width: 100%;
}

.contact-page-content .flex-rev input,
.contact-page-content .flex-rev textarea {
    border: none;
    background-color: #e6e6e6;
    padding: 12px 10px;
    font-size: 16px;
    resize: none;
    margin-top: 7px;
    margin-bottom: 16px;
    border-radius: 5px;
    color: #243342;
    outline-color: #243342;
    outline-width: thin;
}
.contact-page-content .flex-rev input:focus-visible,
.contact-page-content .flex-rev textarea:focus-visible
{
    outline-color: #243342;

}
.contact-page-content .flex-rev textarea{
    height: 150px;
}
.contact-page-content .contact .submit
{
    background-color: #000;
    color: #fff;
    letter-spacing: 1px;
    padding: 10px 2rem;
    display: block;
    text-align: center;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.contact-page-content .contact form .submit:hover{
    background-color: #353535;
}

.contact-page-content .info {
    position: relative;
    padding: 20px;
}

.contact-page-content .info h2 {
    color: #bbe1ff;
    font-size: 34px;
}

.contact-page-content .info h3 {
    color: white;
    letter-spacing: 1.2px;
    margin-top:  20px;
    font-size: 20px;
}

.contact-page-content .svg-wrap {
    display: flex;
    margin-top: 10px;
    gap: 2rem;
}

.contact-page-content .svg-wrap a {
    border: 0;
    padding: 0;
    display: flex;
    color: #bbbbbb;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    font-style: italic;
    transition: all 0.2s ease-in-out;
}

.contact-page-content .svg-wrap a i{
    font-size: 15px;
    color: white;
    transition: fill 0.2s ease-in-out;
    margin-right: 13px;
}
.contact-page-content .connect
{
    gap: 0;
}
.contact-page-content .connect a i
{
    font-size: 30px;
}
.contact-page-content .svg-wrap a:hover i {
    color: #bbe1ff;
    cursor: pointer;
}

.contact-page-content .svg-wrap a:hover {
    background-color: transparent;
    color: #bbe1ff;
    cursor: pointer;
}



@media screen and (max-width: 991px){
    .contact-page-content .content{
        padding: 10px 0 0;
        display: block;
        position: unset;
        transform: unset;
    }
    .contact-page-content .map{
        height: 20vh;
    }
    .contact-page-content .map:after
    {
        display: none;
    }
    .contact-page-content .contact{
        width: 100%;
        flex-direction: column-reverse;
        border-radius: 0;
        box-shadow: 0px 0px 0px 0px;
    }
    .contact-page-content .other{
        width: 100%;
        padding: 20px 0;
    }
    .contact-page-content .form{
        width: 100%;
    }
    .page-header .wrapper
    {
        height: 230px;
        max-height: 230px;

    }
    .page-header .page-title
    {
        font-size: 35px;
    }
    .page-header .page-breadcrumb, .page-header .page-breadcrumb>*
    {
        font-size: 11px;
    }
    .contact-page-content .flex-rev input:focus-visible,
    .contact-page-content .flex-rev textarea:focus-visible
    {
        outline-color: #243342;

    }
}

@media screen and (max-height: 660px){
    .contact-page-content .content{
        align-items: flex-start;
    }
}


@media screen and (max-width: 660px){
    .contact-page-content .content{
        align-items: flex-start;
    }
}

/*AGENTS*/

.agent-country
{
    font-size: 30px;
    color: #1b3665;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.agent-country::after
{
    content: "";
    position: relative;
    display: inline-block;
    background: url("/img/bg_heading.svg");
    width: 200%;
    height: 16px;
    margin: 0 -200% 0 10px;
}
.agent-country img
{
    width: 30px;
    margin-left: 5px;
}
.agent-wrapper
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.agent
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 15px -10px #000000;
    transition: all .2s ease-in-out;
}
.agent:hover
{
    box-shadow: 0 0 20px -10px #000000;
}
.agent-logo img
{
    width: 100px;
}
.agent-info a
{
    color: unset;
    font-weight: 600;
}
.agentAddress, .agentEmail, .agentFax, .agentPhone, .agentPic, .agentZone, .agentName, .agentWebSite {
    padding-left: 30px;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    background-size: 20px;
}
.agentZone {
    color: #4284b4;
    font-weight: bold;
    background-image: url("/img/port-sign.png");
    margin-top: 20px!important;
}
.agentName {
    background-image: url("/img/company.png");
    font-weight: bold;
}
.agentAddress {
    background-image: url("/img/location.png");
}
.agentPhone {
    background-image: url("/img/telephone.png");
}
.agentFax {
    background-image: url("/img/fax.png");
}
.agentEmail {
    background-image: url("/img/email.png");
}
.agentPic {
    background-image: url("/img/user.png");
}
.agentWebSite {
    background-image: url("/img/www.png");
}

@media screen and (max-width: 991px) {
    .agent-wrapper
    {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 760px) {
    .agent-wrapper
    {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/*FAQ*/
.faq
{
    padding: 30px 0;
}
.faq .accordion-item
{
    margin-bottom: 1rem;
    border: none;
}
.faq .accordion-button
{
    background: #192232;
    color: #fff;
    border-radius: 10px !important;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
    transition: all .4s ease-in-out;
}
.faq .accordion-button:hover

{
    padding-left: 3.5rem;
}
.faq .accordion-button::after
{
    display: none;
}
.faq .accordion-button:focus
{
    border: none;
    box-shadow: none;
}
.faq .accordion-button i
{
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #192232;
    transition: all .4s ease-in-out;
}
.faq .accordion-button:hover i
{
    border-right: 1px solid #fff;
}


/*NEWS*/
.news-list
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}
.news-item
{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #cccccc;
    width: 100%;
}
.news-img
{
    display: flex;
    flex: 1;
}
.news-img
{
    width: 100%;
}
.news-content
{
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
}
.news-date
{
    color: #636363;
    font-size: 16px;
    line-height: 25px;
    font-style: italic;
    margin-top: 0;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-date::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 1px;
    background-color: #000;
}
.news-date img
{
    width: 25px;
    height: 25px;
    padding-right: 10px;
}
.news-title
{
    font-size: 25px;
    text-transform: uppercase;
    margin: 10px 0;
    color: #000;
    font-weight: 400;
}
.news-desc
{
    font-size: 16px;
    color: #525252;
    line-height: 30px;
}
.animated-button
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    overflow: hidden;
    border: none;
    z-index: 1;
}
.animated-button svg
{
    width: 30px;
    height:  30px;
    margin-left: 10px;
    fill: #fff !important;
    transition: all .1s ease-in-out;
}
.animated-button:before {
    transition: 1s;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.animated-button:hover svg
{
    fill: #000 !important;
}
.animated-button:hover:before {
    width: 300px;
    height: 300px;
    opacity: 0.4;
    transition: all 0.5s ease-out;
}

.animated-button:hover {
    background-color: #fff;
    color: #000;
    transition: all 0.5s ease-out;
}

.animated-button:hover:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #0855b4;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    animation: pulse 2s infinite;
}

.news-detail-date {
    color: #636363;
    font-size: 18px;
    line-height: 25px;
    font-style: italic;
    margin-top: 0;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.news-detail-date img {
    width: 30px;
    height: 30px;
    padding-right: 10px;
}
.news-detail-date:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #000;
}
.news-detail-img
{
    height: 300px;
    width: 100%;
    margin: 1rem 0;
}
.news-detail-img img
{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.news-detail-content
{
    color: #555555;
    line-height: 25px;
    font-size: 16px;
}

@keyframes pulse {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }

    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .news-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px dashed #cccccc;
    }

    .news-img img{
        width: 200px;
    }

    .news-title {
        font-size: 20px;
    }

    .news-desc {
        line-height: 25px;
    }

    .animated-button {
        padding: 10px 20px;
        font-size: 15px;
        font-weight: 400;
    }
}

@media (max-width: 760px) {
    .news-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px dashed #cccccc;
    }
    .news-content
    {
        padding-left: 0;
    }
}

/*PAGES END*/


/*FLEET START */


.fleet-item .card {
    display: flex;
}

.fleet-item .card-image {
    cursor: pointer;
}
/*
.fleet-item .card-info {
    Bilgi alanının stilini burada belirleyebilirsiniz
}
*/
.fleet-item .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.fleet-item #modal-image {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.fleet-item .close {
    color: #fff;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.fleet-item ul li
{
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin-right: 5px;
}
.fleet-item ul li img
{
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
.fleet-item ul li span
{
    font-weight: 600;
}
.fleet-item ul li span:nth-child(2)
{
    margin-left: 5px;
}
.fleet-item .fleet-n
{
    font-size: 16px;
    color: #4284b4;
}
.fleet-card
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    height: 100%;
}
.fleet-card-image
{
    height: 100%;
}
.fleet-card-image img
{
    width: 300px;
    max-width: 300px;
    height: 100%;
    cursor: pointer;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.fleet-wrapper
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.fleet-item
{
    padding: 10px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 15px -10px #000000;
    transition: all .2s ease-in-out;
}
.fleet-item:hover
{
    box-shadow: 0 0 20px -10px #000000;
}
.fleet-card-info
{
    width: 100%;
}

@media (max-width: 991px) {
    .fleet-wrapper
    {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 760px) {
    .fleet-card
    {
        flex-direction: column;
    }
    .fleet-card-image img
    {
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
        height: 165px;
    }
    .fleet-card-image {
        width: 100%;
    }
}

.schedules-page-content .tab-menu
{
    position: unset;
    width: 100%;
    max-width: 100%;
    box-shadow: unset;
    transform: unset;
}
.schedules-page-content .tabcontent-inner .select-box
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
}
.schedules-page-content .tab-menu .date-search
{
    justify-content: flex-start;
    gap: 1rem;
}
.schedules-page-content .tab-menu
{
    padding: 20px 0;
}
.schedules-page-content .wrapper,
.cargo-page-content .wrapper,
.tariffs .wrapper
{
    padding: 0;
}

.schedules-head,
.cargo-head,
.tariff-head
{
    font-size: 25px;
    color: #4284b4;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}
.schedules-head::after,
.cargo-head::after,
.tariff-head::after
{
    content: "";
    position: relative;
    display: inline-block;
    background: url("/img/bg_heading.svg");
    width: 200%;
    height: 16px;
    margin: 0 -200% 0 10px;
}
.schedule-info p,
.cargo-info p
{
    margin-top: 1rem;
    font-size: 15px;
    color: #999;
}
.schedule-output,
.cargo-tracking-output,
.tariffs-output
{
    font-size: 16px;
}

.no-output
{
    color: #c00000;
    display: block;
    width: 100%;
}
.schedule-table td,
.cargo-tracking-output td
{
    font-size: 15px;
    color: #555555;
}
.schedule-table td p,
.cargo-tracking-output td p
{
    margin-bottom: 5px;
}
.schedule-table td span
{
    font-size: 11px;
    font-weight: 100;
    font-style: italic;
    color: #555555;
}
.schedule-table thead th,
.cargo-tracking-output thead th,
.tariffs-output thead th
{
    color: #eee;
}
.schedule-table thead,
.cargo-tracking-output thead,
.tariffs-output thead
{
    background-color: #192230;
}
.schedule-table tbody tr,
.cargo-tracking-output tbody tr,
.tariffs-output tbody tr
{
    transition: all .1s ease-in-out;
}
.schedule-table tbody tr:hover,
.cargo-table tbody tr:hover
{
    background-color: #4284b4;
}
.schedule-table tbody tr:hover th,
.schedule-table tbody tr:hover td,
.schedule-table tbody tr:hover p,
.schedule-table tbody tr:hover span,
.cargo-table tbody tr:hover th,
.cargo-table tbody tr:hover td,
.cargo-table tbody tr:hover p,
.cargo-table tbody tr:hover span
{
    color: #eee;
}
.text-italic
{
    font-style: italic;
    color: #999;
}
.cargo-tracking-output .text-italic td
{
    color: #999999;
}
.cargo-page-content .tabcontent-inner input[type=text]
{
    width: 500px;
}
.cargo-page-content .output table
{
   margin-bottom: 2rem;
}

.cargo-desc
{
    font-size: 12px;
    color: #232323;
    font-weight: 700;
    padding: 10px 10px 10px 0px;
}


@media (max-width: 991px) {
    .cargo-tracking-output .output,
    .schedule-output .output
    {
        display: block;
        overflow: auto;
    }
    .cargo-page-content .tabcontent-inner input[type=text] {
        width: 350px;
    }
}

.service-title {
    text-align: left;
    font-size: 25px;
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.service-subtitle {
    text-align: left;
    font-size: 18px;
    color: #999999;
    padding: 10px 0;
}
.service-title::after {
    content: "";
    position: relative;
    display: inline-block;
    background: url("/img/bg_heading.svg");
    width: 200%;
    height: 16px;
    margin: 0 -200% 0 10px;
}
.service-image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-info
{
    width: 100%;
}
.service-item-body
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}
.service-desc
{
    color: #555555;
    font-weight: 600;
}
.services table
{
    margin-top: 1rem;
    margin-bottom: 0;
}
.services table td
{
    padding: 0.2rem 0.2rem;
}
.services table th
{
    padding: 0.2rem 0.2rem;
}
.services table thead tr:nth-child(1),
.cargo-table thead tr:nth-child(1)
{
    background-color: #3e4b5e;
}
.services table thead tr:nth-child(1) th
{
    text-align: center;
    font-size: 12px;
}
.services table thead tr:nth-child(2)
{
    background-color: #192232;
}
.services table thead th
{
    color: #fff;
}
.services .d90
{
    transform: rotate(90deg);
}
.services tr:hover
{
    background-color: #4284b4;
    transition: all .1s ease-in-out;
}
.services tr th,
.services tr td
{
    font-size: 12px;
}
.services tr th,
.services tr td
{
    text-align: center;
}
.services tr th:nth-child(1),
.services tr td:nth-child(1),
.services tr th:nth-child(2),
.services tr td:nth-child(2)
{
    text-align: start;
}
.services tr td:nth-child(1)
{
    font-weight: 600;
}
.services tr:hover th,
.services tr:hover td
{
    color: #fff;
    transition: all .1s ease-in-out;
}
.services .wrapper
{
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.services .wrapper>*
{
    width: 100%;
}
.service-item
{
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}
.service-item:last-child
{
    border-bottom: none;
}

@media (max-width: 991px) {
    .service-item-body
    {
        gap: 0;
        flex-direction: column;
    }
    .services table {
        margin-top: 1rem;
        display: block;
        overflow: auto;
    }
    .services .wrapper
    {
        padding: 10px 0;
    }
    .service-title
    {
        font-size: 20px;
    }
    .service-subtitle {
        font-size: 17px;
        padding: 0 0 10px;
    }
    .service-desc
    {
        font-size: 15px;
        margin-top: 10px;
    }
}
@media (max-width: 760px) {
    .service-title:after
    {
        display: none;
    }
}
@media (min-width: 760px) and (max-width: 991px) {
    .service-image
    {
        width: 400px;
        max-width: 400px;
    }
}


.tariffs .tab-content .buttons
{
    margin-top: 1rem;
}
.tariff-desc
{
    margin-top: 10px;
    font-size: 15px;
    color: #999;
}
.tariffs-output
{
    margin-top: 2rem;
}
.tariffs-output th,
.tariffs-output td
{
    font-size: 10px;
    padding: .5rem 5px;
    border: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
}
.tariffs table thead tr:nth-child(1) {
    background-color: #3e4b5e;
}
.tariffs .t-bg1
{
     background-color: #f9f9f9 !important;
 }
.tariffs .t-bg2
{
    background-color: #ffe1e1  !important;
}
.tariffs .t-bg3
{
    background-color: #ffc1c1  !important;
}
.tariffs .t-bg4
{
    background-color: #ffa4a4  !important;
}
.tariffs .t-bg5
{
    background-color: #ff8080  !important;
}

@media (max-width: 991px){
    .tariffs table {
        margin-top: 1rem;
        display: block;
        overflow: auto;
    }
    .tariffs table thead tr:nth-child(1) th
    {
        text-align: start;
    }
    .tariff-head::after {
        display: none;
    }
    .tariffs .select-box
    {
        display: grid !important;
        grid-template-columns: repeat(2,1fr);
    }
    .tariffs .tab-content .buttons {
        margin-top: 10px;
    }
    .tariffs-output th, .tariffs-output td {
        font-size: 12px;
    }

}
@media (max-width: 760px){

    .tariffs .select-box
    {
        display: flex !important;
        flex-direction: column !important;
    }
}
@media (min-width: 760px) and (max-width: 991px) {
    .service-image
    {
        width: 400px;
        max-width: 400px;
    }
    .s-search-btn {
        width: auto;
    }
    .s-search-btn a
    {
        font-size: 14px !important;
    }
    .tab-menu .buttons
    {
        justify-content: flex-end;
    }
}

.bgl
{
    background-color: #3e4b5e;
}
.bgd
{
    background-color: #192230;
}


.containers table tbody tr:nth-of-type(odd)
{
    background-color:rgba(0, 0, 0, 0.05) ;
}
.containers table tbody tr:nth-child(1)
{
    background-color: #192230;
}
.containers table tbody tr:nth-child(1) td,
.containers table tbody tr:nth-child(2) td,
.containers table tbody tr:nth-child(3) td
{
    color: #fff;
    text-align: center;
}
.containers table tbody tr:nth-child(2)
{
    background-color: #3e4b5e;
}
.containers table tbody tr:nth-child(3)
{
    background-color: #798faf;
}
.container-desc
{
    font-size: 15px;
}

@media (max-width: 991px) {
    .container-tables table {
        display: block;
        overflow: auto;
    }
}

.rateinquiry .wrapper
{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
}
.rateinquiry .info,
.rateinquiry form
{
    flex: 1;
}
.rateinquiry form
{
    padding-right: 20px;
}
textarea
{
    resize: none!important;
}

.rateinquiry .select-box
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.rateinquiry .submit-btn
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.rateinquiry .submit-btn button
{
    background-color: #000;
    width: max-content;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    padding: 10px 2rem;
    display: block;
    text-align: center;
    transition: all .3s ease-in-out;
    margin-top: 1rem;
    border: 2px solid #000;
}
.rateinquiry .submit-btn button:hover {
    background-color: #353535;
}

.rateinquiry .form-control:focus,
.rateinquiry .form-select:focus{
    color: #555555;
    border-color: #000000;
    box-shadow: none;
}
.rateinquiry .desc
{
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #000000;
}
.rateinquiry .select
{
    width: 100%;
}
.rateinquiry label:after,
.rateinquiry select:after
{
    content: " *";
    color: red;
}
.rateinquiry label[for="floatingNumber"]:after {
    content: "";
}

.form-select{
    transition: unset;
}

@media (max-width: 760px) {
    .rateinquiry .wrapper
    {
        flex-direction: column-reverse;
    }
    .rateinquiry form {
        padding-right: 0;
        width: 100%;
    }
    .rateinquiry .desc
    {
        line-height: unset;
    }
    .rateinquiry .submit-btn
    {
        justify-content: flex-start;
    }
    .rateinquiry .submit-btn button
    {
        font-size: 14px;
    }
}

