body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.2rem !important;
}

.playfair-display-header {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.roboto-header {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}


h1 {   
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: clamp(1.9rem, 4vw, 2.0rem) !important;
    color: #052c65 !important;
}

h2 {    
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: clamp(1.4rem, 3vw, 1.8rem) !important;
    color: #0f2082 !important;
}

h3 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: clamp(1.5rem, 3vw, 1.8rem) !important;
    color: #0f2082 !important;
}
h4 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: clamp(1.25rem, 2vw, 1.5rem) !important;
    color: #0f2082 !important;
}

p {
    text-align: justify !important;
    font-size: clamp(1rem, 2vw, 1.15rem) !important;
}
.info-bg {
    background-color: #9eeaf9;
}
.removeLink{text-decoration:none;}
.bg-primary {
    background-color: #052c65 !important;
}

.socialbox {
    width: 25%;
    float: left;
    padding: 5px;
}
.navbar-bg {
    background-image: linear-gradient(to bottom,#38e017 0,#29b90c 100%);
    /*border-color: #21a507;*/
}

.footer-bg {
    background-color: #1eb60b !important;
}
.alert-success {
    color: #3c763d !important;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
}
.textdecoration {
    text-decoration: none !important;
    color: #3c763d;
}

.bg-primary1 {
    background-color: #ebfc7c;
}

.alert-success h2 {
    padding: 10px;
}

.alfaBox {
    width: 30px;
    border: 1px solid #0094ff;
    float: left;
    margin: 1px;
    font-size: 20px;
    color: #fff;
    background-color: #2d6189;
}

    .alfaBox a {
        color: #fff;
        font-weight: bold;
    }

.breadcrumb {
    /*centering*/
    display: inline-block;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border-radius: 5px;
    /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
    counter-reset: flag;
}

    .breadcrumb a {
        text-decoration: none;
        outline: none;
        display: block;
        float: left;
        font-size: 14px;
        line-height: 36px;
        color: white;
        /*need more margin on the left of links to accomodate the numbers*/
        padding: 0 10px 0 60px;
        background: #666;
        background: linear-gradient(#666, #333);
        position: relative;
        text-align: center;
    }
        /*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
        .breadcrumb a:first-child {
            padding-left: 46px;
            border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
        }
          .breadcrumb a:first-child:before {
                left: 14px;
            }

        .breadcrumb a:last-child {
            border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
            padding-right: 20px;
        }
               
        .breadcrumb a.active, .breadcrumb a:hover {
            background: #333;
            background: linear-gradient(#333, #000);
        }

            .breadcrumb a.active:after, .breadcrumb a:hover:after {
                background: #333;
                background: linear-gradient(135deg, #333, #000);
            }

        /*adding the arrows for the breadcrumbs using rotated pseudo elements*/
        .breadcrumb a:after {
            content: '';
            position: absolute;
            top: 0;
            right: -18px; /*half of square's length*/
            /*same dimension as the line-height of .breadcrumb a */
            width: 36px;
            height: 36px;
            /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
            transform: scale(0.707) rotate(45deg);
            /*we need to prevent the arrows from getting buried under the next link*/
            z-index: 1;
            /*background same as links but the gradient will be rotated to compensate with the transform applied*/
            background: #666;
            background: linear-gradient(135deg, #666, #333);
            /*stylish arrow design using box shadow*/
            box-shadow: 2px -2px 0 2px rgba(0, 0, 0, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.1);
            /*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
            border-radius: 0 5px 0 50px;
        }
        /*we dont need an arrow after the last link*/
        .breadcrumb a:last-child:after {
            content: none;
        }
        /*we will use the :before element to show numbers*/
        .breadcrumb a:before {
            content: counter(flag);
            counter-increment: flag;
            /*some styles now*/
            border-radius: 100%;
            width: 20px;
            height: 20px;
            line-height: 20px;
            margin: 8px 0;
            position: absolute;
            top: 0;
            left: 30px;
            background: #444;
            background: linear-gradient(#444, #222);
            font-weight: bold;
        }


.flat a, .flat a:after {
    background: #37de15;
    color: #ffffff;
    transition: all 0.5s;
}

    .flat a:before {
        background: #3c763d;
        box-shadow: 0 0 0 1px #ccc;
    }

    .flat a:hover, .flat a.active,
    .flat a:hover:after, .flat a.active:after {
        background: #29b90c;
    }

.quote {
    margin: 0;
    background: #eee;
    padding: 1em;
    border-radius: 1em;
}

    .quote figcaption,
    .quote blockquote {
        margin: 1em;
    }

form {
    margin: 0;
}

.bar-area {
    height: 100%;
    padding: 0 0 0 0px;
    width: 11px;
}

.bar-area .bar {
    height: 40px !important;
    border-left: 1px solid #fff;
    width: 2px;
    margin: 5px 0;
    @media screen and (max-width: 768px) {
        display: none;
    }
}

.pd-left50 {
    padding: 0 50px 0 0;

    @media screen and (max-width: 768px) {
        padding: 0 0 0 0;
    }
}
.bar-area-text{
    font-size: 16px;
    @media screen and (max-width: 768px) {
        display: none;
    }
}
#navSearchBar .input-group>.form-control{
    @media screen and (max-width: 768px) {
        width: auto;
    }
} 
.pd-left20 {
    padding: 0 50px 0 0;
}

.mt10 {
    margin-top: 10px;
}

.mt50 {
    margin-top: 50px;
}

.pt10 {
    padding-top: 10px;
}

.pt5 {
    padding-top: 5px;
}

.border-white {
    border-top: 1px solid #fff;
}

.main-area {
    min-height: 550px;
    margin-top: 30px;
}

.footer1 {
    padding: 20px 10px;
    margin-top: 10px;
    /* margin-bottom: 20px; */
    color: #fff;
    font-size: 14px;
}

    .footer1 a {
        color: #fff;
    }

.p10 {
    padding: 10px;
}

.pt50 {
    padding-top: 50px;
}

.pt30 {
    padding-top: 30px;
}
.pt10 {
    padding-top: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.br8{
    border-radius: 8px;
}

#popular-topic {
    padding: 5px;
}

    #popular-topic ul {
        list-style: none;
        text-indent: 0;
        margin: 0;
    }

        #popular-topic ul li {
            float: left;
            width: 33.3%;
            padding: 0px;
        }

            #popular-topic ul li a {
                text-decoration: none;
            }


#foolerLink ul {
    list-style: none;
    text-indent: 0;
    margin: 0;
}

    #foolerLink ul li {
        float: left;
        width: 33.3%;
        padding: 0px;
    }

        #foolerLink ul li a {
            text-decoration: none;
        }

#categoryCarousel{
  .carousel-inner{
    > .item{
      transition: 500ms ease-in-out left;
    }
    .active{
      &.left{
        left:-33%;
      }
      &.right{
        left:33%;
      }
    }
    .next{
      left: 33%;
    }
    .prev{
      left: -33%;
    }
    @media all and (transform-3d), (-webkit-transform-3d) {
      > .item{
        /* use your favourite prefixer here */
        transition: 500ms ease-in-out left;
        transition: 500ms ease-in-out all;
        backface-visibility: visible;
        transform: none!important;
      }
    }
  }
  .carouse-control{
    &.left, &.right{
      background-image: none;
    }
  }
}


.mySwiper .swiper-slide,
.mySwiper1 .swiper-slide,
.mySwiper2 .swiper-slide {
    width: auto;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev,
.mySwiper1 .swiper-button-next,
.mySwiper1 .swiper-button-prev,
.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev {
    width: 16px;
    height: 48px;
    background: #fff;
    /* border: solid 1px #ccc; */
    border-radius: 4px;
    background-size: 16px 16px;
    top:22px
}
.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev {
    background: #3f00bd;
}
.mySwiper .swiper-button-next::after,
.mySwiper .swiper-button-prev::after,
.mySwiper1 .swiper-button-next::after,
.mySwiper1 .swiper-button-prev::after,
.mySwiper2 .swiper-button-next::after,
.mySwiper2 .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}
.mySwiper2 .swiper-button-next::after,
.mySwiper2 .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.mySwiper .swiper-button-prev,
.mySwiper1 .swiper-button-prev,
.mySwiper2 .swiper-button-prev{
    left: 0;
}
.mySwiper .swiper-button-next,
.mySwiper1 .swiper-button-next,
.mySwiper2 .swiper-button-next{
    right: 0;
}

.navbar-toggler{
    color: #fff;
    border-color: #fff;
    height: 42px;
    margin-right: 4px;
}
.navbar-toggler-icon{
    filter: invert(1);
}
.pt-link-ellipsis{
    display: inline-block;
    width: 235px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: -5px;
}

.overflow-auto a{
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.right-link-ellipsis {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.navbar>.container.header-container{
    align-items: baseline;
}
.m-all-1{
    margin: -1px;
}

.br375 {
    border-radius: 0.375rem;
}

#myTabContent table{
    font-size: 16px;
}