/*@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@500&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@500&display=swap');
:root {
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
}

/*general style start*/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

body {
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: var(--dark);
    background-color: var(--white);
}

body.navOpen {
    overflow: hidden;
    padding-right: 8px;
    height: 100vh;
}

/* anchor styles start */

a,
a:focus,
a:hover,
a:active {
    transition: all 0.15s ease-in-out;
    text-decoration: none;
    outline: none;
}

a,
a:focus {
    color: var(--blue);
}

a:hover,
a:active {
    color: var(--secondary);
}

/* anchor styles end */

/* heading style start */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0 0 11px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
    margin-bottom: 0;
}

h1,
.h1 {
    font-size: 500%;
    line-height: 1;
    font-weight: 700;
}

h2,
.h2 {
    /* font-size: 220%; */
    font-size: 200%;
    font-weight: 700;
}

h3,
.h3 {
    font-size: 115%;
    font-weight: 500;
}

h4,
.h4 {
    font-size: 115%;
    font-weight: 500;
}

h5,
.h5 {
    font-size: 110%;
}

h6,
.h6 {
    font-size: 105%;
}

h3.sub_tit2 {
    font-size: 110%;
    font-weight: 600;
    color: var(--blue);
}

/* heading style end */

p {
    font-size: 95%;
    line-height: 1.4em;
}

strong {
    font-weight: 700;
}

ul,
ol {
    padding: 0;
    margin: 0;
    /*  font-size: 105%; */
    font-size: 95%;
}

ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    list-style-type: none;
}

ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
}

/* button style start */

.btn {
    border-radius: 999px;
    transition: var(--transition);
    padding: 15px 20px;
    font-size: 100%;
    font-weight: 600;
    line-height: 1;
    /* text-transform: uppercase; */
}

.btn-lg {
    padding: 20px 35px;
    font-size: 131.25%;
}

.btn:focus {
    box-shadow: none !important;
}

.btn ._icon:first-child {
    margin-right: 8px;
}

.btn ._icon:last-child {
    margin-left: 8px;
}

.btn ._icon:only-child {
    margin: 0;
}

/* button style end */

/* other common styles start */

.imgPlaceholder {
    background-position: 50% 50%;
    background-size: 30px auto;
    background-repeat: no-repeat;
    background-image: url('../images/icons/loader.svg');
    height: 100%;
    border: none;
    transition: all 0.25s ease-in-out;
    background-color: var(--light);
}

img[src=''],
img:not([src]) {
    content: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

div.lazy,
a.lazy {
    width: 100%;
    transition: none;
    position: relative;
}

a.lazy:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    transition: all 0.25s ease-in-out;
    background-color: var(--white);
}

a.lazy:hover:after {
    opacity: 0.25;
}

.close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
}

.close svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--white);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: all 0.25s ease-in-out;
    width: 100%;
    display: none;
    background-color: rgba(var(--dark-rgb), 0.5);
    opacity: 1;
    z-index: 3;
}

.row.owl-carousel {
    width: calc(100% + 30px);
}

.owl-carousel .owl-stage {
    display: flex;
}

.fancybox-thumbs__list a:before {
    border: 4px solid var(--primary);
}

/* other common styles end */

.modal-content {
    border-radius: 0;
}

.form-control {
    border-radius: 999px;
}

/*general style end*/

/* header style start */

.header {
    top: 0;
    left: 0;
    transition: background-color 0.25s ease-in-out;
    z-index: 5;
    padding: 0;
}

/* 
body.modal-open .header,
body.navOpen .header {
  width: calc(100vw - 8px) !important;
} */

.header.fixedHeader {
    box-shadow: 0 2px 2px rgba(var(--black-rgb), 0.1);
    background-color: var(--blue-dark) !important;
}

.topMenu {
    display: flex;
}

.topMenu>a:not(:last-child) {
    margin-right: 30px;
    position: relative;
}

.topMenu>a:not(:last-child):after,
.fontSizeChange:after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 1px;
    height: 18px;
    background-color: var(--info-light);
}

.fontSizeChange {
    margin-right: 30px;
    position: relative;
    letter-spacing: 4px;
}

.fontSizeChange a {
    color: var(--white);
}

.fontSizeChange .inc {
    font-size: 18px;
    font-weight: 600;
}

.fontSizeChange .normal {
    font-size: 15px;
    font-weight: 500;
}

.fontSizeChange .dec {
    font-size: 13px;
    font-weight: 500;
}

.colorChange {
    display: flex;
}

.colorChange a {
    width: 15px;
    height: 15px;
    border: 2px solid transparent;
}

.colorChange a.selected {
    border-color: var(--primary);
}

.colorChange a:not(:last-child) {
    margin-right: 8px;
}

.colorChange a.white {
    background-color: var(--white);
}

.colorChange a.black {
    background-color: var(--black);
}

.colorChange a.blue {
    background-color: var(--blue);
}

.colorChange a.orange {
    background-color: var(--orange);
}

.languageChange {
    background-color: transparent;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
}

.languageChange option {
    font-size: 88%;
    color: var(--black);
}

.topBar {
    border-bottom: 1px solid rgba(var(--info-medium-rgb), 0.4);
}

/* logo */

.logo {
    display: flex;
    padding: 15px 0;
    align-items: center;
}

.logo a {
    display: flex;
}

.logo a:not(:last-child) {
    margin-right: 15px;
    border-right: 1px solid var(--info);
    padding-right: 15px;
}

.logo a img,
.logo a svg {
    max-height: 62px;
    display: block;
    object-fit: contain;
}

.main_nav .logo a img,
.main_nav .logo a svg {
    max-height: 82px;
}

/* header style end */

/* back to top start */

.backToTop {
    width: 44px;
    height: 44px;
    display: inline-block;
    position: fixed;
    bottom: 15px;
    right: 15px;
    filter: drop-shadow(0 0 2px rgba(var(--black-rgb), 0.5));
    border-radius: 50%;
    z-index: 4;
    opacity: 0;
    transform: scale(0, 0);
    transition: all 0.5s ease-in-out;
}

a.backToTop:hover,
a.backToTop:focus,
a.backToTop:active {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

a.backToTop:hover {
    opacity: 0.5;
}

.backToTop.show {
    opacity: 0.75;
    transform: scale(1, 1);
}

.backToTop i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

/* back to top end */

/* menu style start */

#menu_toggler {
    display: block;
    position: relative;
    width: 28px;
    height: auto;
    flex-shrink: 0;
    margin-left: 15px;
}

#menu_toggler svg {
    fill: currentColor;
    transition: var(--transition);
}

#menu_toggler.open svg {
    opacity: 0;
}

#menu_toggler span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: var(--transition);
    opacity: 0;
}

#menu_toggler.open span {
    opacity: 1;
}

#menu_toggler.open span:first-child,
#menu_toggler.open span:last-child {
    transform: scale(0);
}

#menu_toggler.open span:nth-child(2) {
    transform: rotate(45deg);
}

#menu_toggler.open span:nth-child(3) {
    transform: rotate(-45deg);
}

#menu_toggler span:last-child {
    top: auto;
    bottom: 0;
}

#menu_toggler span:nth-child(2),
#menu_toggler span:nth-child(3) {
    top: 50%;
    margin-top: -2px;
}

.main_nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.25s ease-in-out;
    width: 480px;
    max-width: 100%;
    flex-direction: column;
    overflow-y: auto;
    align-items: flex-start;
    padding: 15px;
    display: flex;
    align-items: center;
    background: var(--white) url(../images/menu_bg.png) no-repeat bottom right / auto 100%;
    font-family: 'Poppins', sans-serif;
}

.main_nav>ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 15px;
}

.main_nav>ul:not(:last-child) {
    margin-right: 30px;
}

.main_nav>ul>li {
    position: relative;
    padding-left: 0;
}

.main_nav>ul>li:before {
    display: none;
}

.main_nav>ul>li>a,
.main_nav>ul>li>a:focus {
    display: block;
    font-weight: 500;
    color: var(--blue);
    display: flex;
    align-items: center;
    padding: 0;
    letter-spacing: 1px;
}

.main_nav>ul>li.active>a,
.main_nav>ul>li.active>a:focus,
.main_nav>ul>li.active>a:hover,
.main_nav>ul>li.active>a:active,
.main_nav>ul>li>a:active,
.main_nav>ul>li:hover>a {
    color: var(--primary);
}

.main_nav .sub_menu li a {
    color: var(--gray);
    font-weight: 500;
    font-size: 85%;
    display: block;
    padding: 8px 0;
    border-bottom: 1px dotted var(--gray-light);
}

.main_nav .sub_menu li.active a {
    color: var(--secondary);
}

.main_nav .sub_menu li {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
}

.main_nav .sub_menu li:before {
    display: none;
}

.main_nav .sub_menu li a:hover {
    color: var(--primary);
}

.main_nav.open {
    transform: translateX(0);
    /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25); */
}

.header.fixedHeader .main_nav>ul>li>a,
.header.fixedHeader .main_nav>ul>li>a:focus,
.main_nav>ul>li>a,
.main_nav>ul>li>a:focus {
    font-size: 112.5%;
    border-radius: 0;
}

.dp-trigger {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 36px;
    height: 36px;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
}

.dp-trigger.in {
    background-color: rgba(var(--white-rgb), 0.15);
}

.dp-trigger:after,
.dp-trigger:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--dark);
    transition: all 0.15s ease-in-out;
}

.dp-trigger:after {
    width: 15px;
    height: 1px;
}

.dp-trigger:before {
    width: 1px;
    height: 15px;
}

.dp-trigger.in:before {
    height: 0;
}

.main_nav>ul>li>.sub_menu,
.main_nav>ul>li:hover>.sub_menu {
    display: none;
    width: 100%;
    max-width: 100%;
    background-color: rgba(var(--white-rgb), 0.15);
    margin-top: 5px;
    padding-left: 52px;
}

.main_nav .closeIcon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.main_nav .closeIcon svg {
    width: 100%;
    height: 100%;
    fill: var(--gray-dark);
    transition: var(--transition);
}

.main_nav>ul>li>a svg,
.main_nav>ul>li>a img {
    width: 36px;
    height: 36px;
    fill: var(--secondary);
    margin-right: 15px;
}

.main_nav>ul>li.active>a svg,
.main_nav>ul>li.active>a:focus svg,
.main_nav>ul>li.active>a:hover svg,
.main_nav>ul>li.active>a:active svg,
.main_nav>ul>li>a:active svg,
.main_nav>ul>li:hover>a svg {
    fill: currentColor;
}

/* menu style end */

/* scrollbar css start */

/* width */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--blue-dark);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* scrollbar css end */

/* banner style start */

.banner_parent {
    position: relative;
    background-color: var(--blue-dark);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner_parent:not(.innerBanner):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient( 180deg, var(--blue-dark) -4.3%, rgba(var(--blue), 0) 73.58%);
    mix-blend-mode: overlay;
    opacity: 0.66;
    filter: blur(40px);
    z-index: 1;
}

.bannerSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bannerSlider .sliderItem {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.banner_parent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.bannerVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 3;
}

/* .bannerSlider .sliderItem.hasVideo:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--blue-medium-rgb), 0.5);
  z-index: 4;
} */

.bannerCaption {
    position: relative;
    z-index: 2;
}

.bannerCaption h1 {
    font-size: 350%;
    max-width: 650px;
}

.socialMenu {
    position: fixed;
    top: 20%;
    right: 0;
    transform: translateY(-50%) translateX(calc(100% - 60px));
    display: flex;
    align-items: center;
    z-index: 2;
    background-color: var(--blue-dark);
    padding: 10px;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(var(--black-rgb), 0.25);
    border-radius: 999px 0 0 999px;
    overflow: hidden;
}

.socialMenu:hover {
    transform: translateY(-50%);
}

.socialTrigger {
    width: 60px;
    height: 50px;
    background-color: var(--blue);
    padding: 10px;
    margin: -10px 10px -10px -10px;
}

.socialTrigger svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.socialMenu a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    font-size: 16px;
    color: var(--blue-dark);
}

.socialMenu a:not(:last-child) {
    margin-right: 5px;
}

.socialMenu a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.socialMenu a.facebook:hover {
    background-color: var(--facebook);
}

.socialMenu a.twitter:hover {
    background-color: var(--twitter);
}

.socialMenu a.youtube:hover {
    background-color: var(--youtube);
}

.socialMenu a.linkedin:hover {
    background-color: var(--linkedin);
}

.socialMenu a.instagram:hover {
    background-color: var(--instagram);
}

.banner_parent.innerBanner {
    height: 395px;
}

.banner_parent.innerBanner .bannerCaption h1 {
    font-size: 400%;
    max-width: none;
}

/* banner style end */

.infoBarHeading {
    position: relative;
    display: flex;
    align-items: center;
}

.infoBarHeading:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) skew(-15deg);
    transform-origin: top right;
    width: 300%;
    height: 150%;
    /*background-image: linear-gradient(77.65deg, #ff815e 10.75%, #ffdb2f 139.37%);*/
    /* background-image: linear-gradient(77.65deg, #d391ea 10.75%, #e2bfef 139.37%); */
    background-image: linear-gradient(77.65deg, #6059f3 10.75%, #aeacd9 139.37%);
    z-index: 1;
}

.infoBarHeading * {
    position: relative;
    z-index: 2;
}

.newsBox {
    background-color: var(--light);
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.newsBox .newsHeading {
    padding: 18px 40px;
    background-color: var(--warning);
    border-radius: 0 30px 0 0;
    font-size: 150%;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.newsBox .newsScroller {
    padding: 0 15px;
    width: 100%;
}

.newsBox .newsScroller a {
    font-size: 125%;
    color: var(--gray-dark);
}

.newsBox .newsScroller a:hover {
    color: var(--secondary);
}

.newsBox .newsScroller a {
    margin-right: 30px;
    position: relative;
}

.newsBox .newsScroller a:after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: var(--black);
}

.footerMenu {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footerMenu li {
    width: 50%;
    flex-shrink: 0;
    padding: 0 15px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 42px;
}

.footerMenu li:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    /*  background-color: var(--success); */
    background-color: #f0f8ff;
}

.footerMenu li a {
    font-size: 100%;
    font-weight: 500;
    color: var(--white);
}

.footerMenu li a:hover {
    color: var(--secondary);
}

.footerLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footerLinks a {
    color: var(--gray-dark);
}

.footerLinks li {
    padding-left: 0;
}

.footerLinks li:before {
    display: none;
}

.footerLinks li:not(:last-child) {
    margin-right: 25px;
    position: relative;
}

.footerLinks li:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: var(--gray);
}

.zigZagItems {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.zigZagItems .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% / 6);
    row-gap: 10px;
    min-height: 200px;
    position: relative;
}

.zigZagItems .item:before,
.zigZagItems .item:after {
    content: '';
    position: absolute;
    width: calc(50% + 2px);
    height: calc(50% + 2px);
    border-color: var(--gray-light);
    border-style: solid;
}

.zigZagItems .item:nth-child(even) {
    flex-direction: column-reverse;
}

.zigZagItems .item:before {
    left: -2px;
    top: 0;
    border-width: 4px 0 0 4px;
    border-top-left-radius: 100%;
}

.zigZagItems .item:after {
    right: -2px;
    top: 0;
    border-width: 4px 4px 0 0;
    border-top-right-radius: 100%;
}

.zigZagItems .item:nth-child(even):before {
    left: -2px;
    top: auto;
    bottom: 0;
    border-width: 0 0 4px 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 100%;
}

.zigZagItems .item:nth-child(even):after {
    right: -2px;
    top: auto;
    bottom: 0;
    border-width: 0 4px 4px 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 100%;
}

.zigZagItems .item:first-child:before {
    display: none;
}

.zigZagItems .item:last-child:after {
    display: none;
}

.zigZagItems .itemIcon {
    width: 96px;
    height: 96px;
    border: 4px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary);
    transition: var(--transition);
}

.zigZagItems .item:nth-child(1) .itemIcon {
    background-color: #35c29e;
}

.zigZagItems .item:nth-child(2) .itemIcon {
    background-color: #46aef7;
}

.zigZagItems .item:nth-child(3) .itemIcon {
    background-color: #7875df;
}

.zigZagItems .item:nth-child(4) .itemIcon {
    background-color: #b365a4;
}

.zigZagItems .item:nth-child(5) .itemIcon {
    background-color: #afaa42;
}

.zigZagItems .item:nth-child(6) .itemIcon {
    background-color: #cb6e52;
}

.zigZagItems .item:nth-child(1):hover .itemIcon {
    background-color: #5fedc6;
}

.zigZagItems .item:nth-child(2):hover .itemIcon {
    background-color: #60989b;
}

.zigZagItems .item:nth-child(3):hover .itemIcon {
    background-color: #a7a4e9;
}

.zigZagItems .item:nth-child(4):hover .itemIcon {
    background-color: #d39dca;
}

.zigZagItems .item:nth-child(5):hover .itemIcon {
    background-color: #bcb759;
}

.zigZagItems .item:nth-child(6):hover .itemIcon {
    background-color: #d9917c;
}

.zigZagItems .item:nth-child(1):hover h3 {
    color: #35c29e !important;
}

.zigZagItems .item:nth-child(2):hover h3 {
    color: #46aef7 !important;
}

.zigZagItems .item:nth-child(3):hover h3 {
    color: #7875df !important;
}

.zigZagItems .item:nth-child(4):hover h3 {
    color: #b365a4 !important;
}

.zigZagItems .item:nth-child(5):hover h3 {
    color: #afaa42 !important;
}

.zigZagItems .item:nth-child(6):hover h3 {
    color: #cb6e52 !important;
}

.zigZagItems .item:hover .itemIcon {
    /* background-color: var(--primary); */
    transform: rotate(-360deg);
}

.zigZagItems .itemIcon svg {
    width: auto;
    height: 42px;
    fill: var(--white);
}

.zigZagItems h3 {
    /* font-size: 137.5%; */
    font-size: 125.5%;
    font-weight: 500;
    color: var(--gray-dark);
    transition: var(--transition);
}

/* .zigZagItems .item:hover h3 {
  color: var(--primary) !important;
} */

.blockSection .eachBlock .blockIcon {
    width: auto;
    height: 72px;
    fill: var(--white);
}

.blockSection .eachBlock a {
    display: block;
    min-height: 324px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    row-gap: 15px;
    position: relative;
}

.blockSection .eachBlock a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--light);
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.blockSection .eachBlock a:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.blockSection .eachBlock a>* {
    position: relative;
    z-index: 2;
}

.blockSection .eachBlock a .descriptionRow {
    min-height: 120px;
}

.blockSection .eachBlock a p {
    font-size: 125%;
    line-height: 1.4;
    display: none;
    color: var(--gray-dark);
}

.blockSection .eachBlock a:hover .blockIcon {
    display: none;
}

.blockSection .eachBlock a:hover p {
    display: block;
}

.blockSection .eachBlock {
    border: 1px solid var(--white);
}

.blockSection .eachBlock h3 {
    font-size: 150%;
    font-weight: 500;
    color: var(--white);
    position: relative;
    width: 100%;
    transition: var(--transition);
    min-height: 82px;
}

.blockSection .eachBlock a:hover h3 {
    color: var(--gray-dark);
}

.blockSection .eachBlock h3 svg.plusIcon {
    width: 26px;
    height: 26px;
    fill: var(--white);
    transition: var(--transition);
}

.blockSection .eachBlock h3 svg.nextIcon {
    width: 28px;
    height: 24px;
    fill: var(--blue-medium);
    transition: var(--transition);
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.blockSection .eachBlock a:hover h3 svg.nextIcon {
    opacity: 1;
}

.blockSection .eachBlock a:hover h3 svg.plusIcon {
    opacity: 0;
}

.blockSection .eachBlock:nth-child(1) {
    background-image: linear-gradient(300.68deg, #5fedc6 9.14%, #35c29e 79.15%);
}

.blockSection .eachBlock:nth-child(2) {
    background-image: linear-gradient(150.28deg, #60989b 7.51%, #46aef7 101.48%);
}

.blockSection .eachBlock:nth-child(3) {
    background-image: linear-gradient(124.38deg, #a7a4e9 23.55%, #7875df 81.45%);
}

.blockSection .eachBlock:nth-child(4) {
    background-image: linear-gradient(327.14deg, #d39dca -0.94%, #b365a4 82.76%);
}

.blockSection .eachBlock:nth-child(5) {
    background-image: linear-gradient(123.11deg, #bcb759 28.03%, #afaa42 73.41%);
}

.blockSection .eachBlock:nth-child(6) {
    background-image: linear-gradient(330.54deg, #d9917c 2.35%, #cb6e52 87.48%);
}

.cardSlider.mx-n2 {
    margin-left: -8px;
    margin-right: -8px;
    width: calc(100% - 160px);
    margin: 0 auto;
}

.view-id-speciall_projects .carouselCard img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--gray-light);
}

.carouselCard img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--gray-light);
}

.carouselCard._sm img {
    height: 180px;
    object-position: top center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border: 1px solid var(--black);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 21px 17px;
    filter: invert(70%);
}

.owl-carousel .owl-nav button.owl-next.disabled,
.owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.owl-carousel .owl-nav button.owl-next {
    right: -80px;
    background-image: url(../images/icons/arrow_right.svg);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -80px;
    background-image: url(../images/icons/arrow_left.svg);
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.owl-item:nth-child(odd) .carouselCard .cardDescription {
    /* background-color: var(--info); */
    background-color: #e380e1;
}

.owl-item:nth-child(even) .carouselCard .cardDescription {
    /* background-color: var(--blue-medium); */
    background-color: #10d9cf;
}

.zigZagRows .zigZagRow:not(:last-child) {
    margin-bottom: 10px;
}

.zigZagRows .zigZagRow:nth-child(even) {
    flex-direction: row-reverse;
}

.specialProjects {
    background: url(../images/square_pattern.svg) repeat top left / 10px auto;
    position: relative;
}

.specialProjects:before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 60%;
    background: url(../images/northern_star.jpg) no-repeat top left / 100% auto;
}

/* designed by Nivetha - 16-09-2022*/

.carouselCard .cardDescription .fs-2 {
    font-size: 1.3rem !important;
}

.fs-6 {
    font-size: 0.9rem !important;
}

/**/

.specialProjects .cardSlider.owl-carousel .owl-nav button.owl-next,
.specialProjects .cardSlider.owl-carousel .owl-nav button.owl-prev {
    background-color: var(--white);
    border: none;
    filter: none;
}

.roundBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    text-align: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    row-gap: 20px;
    padding: 4vw 3vw;
    line-height: 1.2;
    margin: 0 auto;
}

#percent {
    margin-top: -25px;
    margin-right: -33px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.roundBtnSuccess {
    background: linear-gradient(147.39deg, #c3e181 7.58%, #a5bb73 92.09%);
    color: var(--white);
}

.roundBtnInfo {
    background: linear-gradient(147.39deg, #41c69d 7.58%, #475dd0 92.09%);
    color: var(--white);
}

.roundBtn .btnIcon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.roundBtn .btnArrow {
    width: 28px;
    height: 24px;
    flex-shrink: 0;
}

.roundBtn svg {
    fill: currentColor;
}

.roundBtn:hover {
    background: var(--blue-medium);
    color: var(--white);
}

.policiesSection {
    background: url(../images/government_policies_bg.jpg) no-repeat right bottom / 40% auto;
}

.arrowList li {
    position: relative;
    padding-left: 40px;
}

.arrowList li:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
}

.arrowList li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 16px;
    height: 20px;
    background: url(../images/icons/arrow_right_blue.svg) no-repeat center center / 100% auto;
}

.arrowList li a {
    color: var(--gray-dark);
}

.arrowList li a:hover {
    color: var(--blue);
}

.partnerSlider {
    border: 1px solid var(--gray-light);
    padding: 40px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
}

.partnerSlider .owl-item {
    display: flex;
}

.partnerSlider .owl-item img {
    width: auto;
    height: auto;
    margin: auto;
    max-width: 90%;
}

.partnerSlider.owl-carousel .owl-nav button {
    background-color: var(--white);
    filter: none;
}

.partnerSlider.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.partnerSlider.owl-carousel .owl-nav button.owl-next {
    right: 0;
    transform: translate(50%, -50%);
}

.partnerSlider.owl-carousel .owl-nav button.owl-next.disabled,
.partnerSlider.owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 1;
    border-color: var(--gray-light);
    background-color: var(--lighter);
}

/* sez page style start */

.locationMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 83%;
    column-gap: 10px;
    row-gap: 5px;
}

.locationMenu li {
    padding-left: 0;
    margin-bottom: 0;
}

.locationMenu li:before {
    display: none;
}

.locationMenu li a {
    display: block;
    font-size: 150%;
    color: var(--gray-dark);
    padding: 15px;
    border-bottom: 4px solid transparent;
}

.locationMenu li a:hover,
.locationMenu li.active a {
    color: var(--secondary);
    border-color: var(--secondary);
}

.accordion-item {
    border: none;
    border-radius: 0 !important;
}

.accordion-button {
    font-size: 50%;
    font-weight: 500;
    color: var(--white) !important;
    background-color: var(--blue) !important;
    border-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(10);
}

.table-responsive {
    margin-bottom: 15px;
}

table.table {
    font-size: 100%;
}

table.table p {
    font-size: 100%;
}

table.table thead tr {
    background-color: var(--gray-dark);
    color: var(--white);
}

table.table thead tr th {
    padding: 9px 10px !important;
    font-weight: 500;
    vertical-align: middle;
}

table.table tr td {
    padding: 9px 8px !important;
    font-size: 100%;
    border: none;
}

table.table tbody tr:nth-child(odd) {
    background-color: var(--lighter);
}

table.table tbody tr:nth-child(even) {
    background-color: var(--light);
}

.gallerySection .owl-carousel .owl-nav button.owl-next,
.gallerySection .owl-carousel .owl-nav button.owl-prev {
    background-color: var(--white);
    border: none;
    filter: none;
}

.carouselGalleryCard {
    position: relative;
}

.carouselGalleryCard:after {
    content: '';
    position: absolute;
    top: 0;
    left: 8px;
    width: calc(100% - 16px);
    height: 100%;
    background: rgba(var(--blue-rgb), 0.5) url(../images/icons/expand.svg) no-repeat center center / 30px auto;
    opacity: 0;
    transition: var(--transition);
}

.carouselGalleryCard:hover:after {
    opacity: 1;
}

.carouselGalleryCard img {
    height: 370px;
    width: 100%;
    object-fit: cover;
}

.carouselGalleryCard.newsImg:after,
.carouselGalleryCard.galleryImg:after {
    width: 100%;
    left: 0;
}

.tab-content {
    padding: 30px;
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: var(--gray-light);
}

.nav-tabs {
    border-bottom: 2px solid var(--blue);
    column-gap: 10px;
}

.nav-tabs li {
    padding-left: 0;
    margin-bottom: 0;
}

.nav-tabs li:before {
    display: none;
}

.nav-tabs .nav-link {
    margin: 0;
    border-radius: 0;
    background-color: var(--light);
    padding: 15px 20px;
    font-size: 100%;
    color: var(--gray-dark);
    border: none;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--blue);
    color: var(--white);
}

.blockLink:hover {
    transform: scale(1.025);
}

.breadcrumbSection ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 15px;
}

.breadcrumbSection ul li a {
    color: var(--blue);
}

.breadcrumbSection ul li a:hover {
    color: var(--secondary);
}

.breadcrumbSection ul li {
    position: relative;
    margin-bottom: 0;
    padding-left: 0;
}

.breadcrumbSection ul li:before {
    display: none;
}

.breadcrumbSection ul li:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    height: 16px;
    width: 1px;
    background-color: var(--gray);
    transform: translateY(-50%) skewX(340deg);
}

.numberedList {
    display: flex;
    flex-direction: column;
    /*  row-gap: 15px; */
    row-gap: 5px;
    counter-set: listNumber;
}

.numberedList li {
    position: relative;
    counter-increment: listNumber;
    padding-left: 65px;
    min-height: 35px;
    display: flex;
    align-items: center;
    font-size: 112.5%;
}

.numberedList li:before {
    content: counter(listNumber);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    /*  width: 50px;
  height: 50px; */
    width: 45px;
    height: 35px;
    background-color: var(--lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 125%;
    line-height: 1;
    color: var(--blue);
    font-weight: 500;
}

.newsImg {
    min-height: 280px;
    display: block;
    height: 100%;
}

.newsImg img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.galleryImg {
    height: 220px;
}

.galleryImg img {
    height: 100%;
}

ul.itseztamil {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}

ul.itseztamil li {
    width: calc(33.33% - 20px);
}

.newsRow {
    transition: var(--transition);
}

.newsRow:hover {
    background-color: rgba(var(--lighter-rgb), 0.5);
}

.newsRow .icon {
    fill: var(--blue-medium);
}

.item-list {
    padding-bottom: 40px;
}

.item-list .pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.item-list .pager li {
    margin: 0;
    padding: 0;
}

.item-list .pager li:before {
    display: none;
}

.item-list .pager li a {
    display: block;
    background-color: var(--info);
    padding: 6px 8px;
    border-radius: 0.3rem;
    font-size: 87%;
    line-height: 1;
    color: var(--white);
}

.item-list .pager li.pager-current {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 0.3rem;
    padding: 6px 8px;
    font-size: 87%;
    line-height: 1;
    font-weight: 400;
}

.language-switcher-locale-url {
    display: flex;
    align-items: center;
    font-size: 100%;
}

.language-switcher-locale-url .language-link {
    color: var(--white);
}

.language-switcher-locale-url li {
    padding-left: 0;
    margin-bottom: 0;
}

.language-switcher-locale-url li:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 1px;
    height: 15px;
    transform: translateY(-50%);
    background-color: var(--info-light);
}

.language-switcher-locale-url .active {
    display: none;
}

.language-switcher-locale-url .menu_active {
    color: #000;
}

.contactBox>div {
    transition: var(--transition);
}

.contactBox>div:hover {
    background-color: var(--lighter);
    box-shadow: 0 0 15px rgba(var(--black-rgb), 0.15);
}

ul.tabs {
    padding-left: 0;
    display: flex;
    column-gap: 5px;
    margin: 0 0 15px;
    display: flex;
    column-gap: 5px;
    margin: 0 0 15px;
}

ul.tabs li {
    padding-left: 0;
    margin-bottom: -1px;
}

ul.tabs li:before {
    display: none;
}

ul.tabs li a {
    font-size: 100%;
    padding: 5px 15px;
    border-radius: 0.3rem 0.3rem 0 0;
    color: var(--dark);
    background-color: var(--white);
    margin: 0;
    display: block;
}

ul.tabs li a.active {
    background-color: var(--blue-medium);
    border-color: var(--blue-medium);
    color: var(--white);
}

.cardIconWrap {
    height: 120px;
    transition: var(--transition);
}

.cardIconWrap img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cardIconWrap._lg img {
    width: 100%;
    height: 80px;
    margin-top: 20px;
}

a.cardIconWrap:hover {
    box-shadow: 0 0 15px rgb(0 0 0 / 15%);
}

/* admin style start */

#admin-menu {
    margin: 0;
    height: auto;
}

#admin-menu .dropdown li:before {
    display: none;
}

/* admin style end */

.vTabMenu {
    display: flex;
    column-gap: 2px;
    overflow-x: auto;
}

.vTabMenu li {
    margin: 0;
    padding: 0 0 30px 0;
}

.vTabMenu li:before {
    display: none;
}

.vTabMenu li a {
    padding: 15px;
    display: block;
    background-color: var(--blue-medium);
    font-size: 100%;
    font-weight: 400;
    color: var(--white);
    border-radius: 0.5rem;
    position: relative;
    text-align: center;
    min-width: 120px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vTabMenu li.active a {
    background-color: var(--secondary);
}

.vTabMenu li a:after {
    content: '';
    position: absolute;
    left: 50%;
    border-width: 15px 20px;
    border-style: solid;
    border-color: var(--secondary) transparent transparent transparent;
    transform: translateX(-50%);
    top: calc(100% - 30px);
    z-index: -1;
    transition: var(--transition);
}

.vTabMenu li.active a:after {
    top: 100%;
}

.view-filters {
    padding: 15px;
    border: 1px solid var(--gray-light);
    background-color: var(--lighter);
    border-radius: 0.3rem;
    margin-bottom: 15px;
}

.views-exposed-form .views-exposed-widget {
    padding: 0;
}

.views-exposed-form .views-exposed-widgets {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
    margin: 0;
}

.views-exposed-widget.views-widget-filter-body_value,
.views-exposed-widget.views-widget-filter-title,
.views-exposed-widget.views-widget-filter-field_ordering_date_value {
    /* width: calc(33.33% - 10px); */
    display: flex;
    flex-direction: column;
}

.views-exposed-widget.views-widget-filter-field_ordering_date_value .views-widget>div {
    width: calc(50% - 8px);
}

.views-exposed-form .form-item,
.views-exposed-form .form-submit {
    display: flex;
    flex-direction: column;
}

.views-exposed-widget.views-widget-filter-field_ordering_date_value .views-widget {
    display: flex;
    column-gap: 15px;
}

.view-filters .form-item input {
    width: 100% !important;
    height: 30px;
    padding: 0 10px;
    border-radius: 0.3rem;
    font-size: 93%;
    border: 1px solid var(--gray-light);
    margin: 0 !important;
}

.view-filters input[type='submit'] {
    background-color: var(--blue);
    padding: 8px 15px;
    margin: 0;
    font-size: 100%;
    line-height: 1;
    color: var(--white);
    border-radius: 0.3rem;
    height: auto;
    align-items: center;
}

.view-filters input[type='submit']:hover {
    background-color: var(--blue-medium);
}

.view-filters .form-item label,
.views-exposed-widget.views-widget-filter-title label,
.views-exposed-widget.views-widget-filter-body_value label {
    font-size: 100%;
    font-weight: 500;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 2px;
}

.view-filters .description {
    color: var(--gray);
}

.view-filters .form-item,
.view-filters .form-submit {
    margin: 0;
}

.views-exposed-widget.views-reset-button input {
    background-color: var(--gray);
}

.views-exposed-widget.views-reset-button input:hover {
    background-color: var(--gray-dark);
}

.views-exposed-form .views-exposed-widget .form-submit {
    margin: 0;
}

.view-empty {
    font-size: 125%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--light-rgb), 0.75);
    border-radius: 0.3rem;
    box-shadow: 0 0 15px rgba(var(--black-rgb), 0.15);
}

.views-exposed-form .views-exposed-widgets>div {
    width: calc(33.33% - 10px);
}

.views-exposed-widget.views-widget-filter-field_last_date_of_document_down_value .views-widget {
    display: flex;
    column-gap: 15px;
    row-gap: 15px;
}

.views-exposed-widget.views-widget-filter-field_last_date_of_document_down_value .views-widget>div {
    width: 100%;
}

.form-item.form-type-textfield.form-item-field-last-date-of-document-down-value-min-date {
    width: 100%;
}

.form-item.form-type-textfield.form-item-field-last-date-of-document-down-value-max-date {
    width: 100%;
}

.view-filters select {
    height: 30px;
    padding: 0 15px;
    font-size: 93%;
}

.views-exposed-widget.views-submit-button {
    width: auto !important;
}

.views-exposed-widget.views-reset-button {
    width: auto !important;
}

.arrowLink {
    position: relative;
    padding-right: 24px;
    text-transform: uppercase;
}

.arrowLink:before,
.arrowLink:after {
    content: '\f178';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.arrowLink:after {
    right: 0;
}

.arrowLink:before {
    font-size: 0;
    left: 0;
}

.arrowLink:hover:before {
    font-size: 100%;
}

.arrowLink:hover:after {
    font-size: 0;
}

.arrowLink:hover {
    padding-left: 24px;
    padding-right: 0;
}

.phoneEmail {
    position: relative;
}

.phoneEmail span:first-child:before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--blue);
}

.emailWrap {
    position: relative;
    column-gap: 10px;
}

.emailWrap:before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: -2px;
    color: var(--blue);
}

.form-item {
    display: flex;
    flex-direction: column;
    margin: 0 0 25px;
}

.form-item label {
    font-size: 115%;
    font-weight: 500;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.form-item .form-text,
.form-item .form-textarea {
    width: 100%;
    height: 44px;
    border-radius: 0.3rem;
    border: 1px solid var(--gray-light);
    font-size: 115%;
    color: var(--gray-dark);
    margin: 0;
    padding: 0 15px;
}

.form-item .form-textarea {
    height: 80px;
    resize: none;
}

.form-textarea-wrapper.resizable.textarea-processed.resizable-textarea {
    position: relative;
}

.resizable-textarea .grippie {
    border-radius: 0.3rem;
    width: 50px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    bottom: -4px;
}

.form-item.form-type-textfield.form-item-captcha-response input {
    width: 100px;
}

.fieldset-legend {
    font-size: 83%;
    font-weight: 500;
    color: var(--blue);
}

.fieldset-description {
    font-size: 115%;
    margin-bottom: 10px;
}

.form-item.form-type-textfield.form-item-captcha-response {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.form-item.form-type-textfield.form-item-captcha-response label {
    width: 100%;
    margin-bottom: 5px;
}

span.field-prefix {
    font-size: 125%;
    font-weight: 500;
    margin-right: 10px;
    color: var(--blue);
}

.form-item .description {
    font-size: 93%;
    width: 100%;
}

.form-actions {
    margin: 0;
}

.form-actions input,
form input[type='submit'] {
    background-color: var(--blue);
    padding: 10px 15px;
    min-width: 100px;
    border-radius: 0.3rem;
    font-size: 125%;
    color: var(--white);
    transition: var(--transition);
    text-align: center;
}

.form-actions input:hover,
form input[type='submit']:hover {
    background-color: var(--blue-medium);
}

.rowsBlock {
    border: 1px solid var(--gray-light);
}

.rowsBlock .row:not(:last-child) {
    border-bottom: 1px dashed var(--gray-light);
}

.rowsBlock p {
    word-break: break-all;
}

.downloadLink:after {
    content: '\f019';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
}

.promo_add_block {
    background-color: #fff;
    border: 1px solid #efefef;
    box-shadow: 2px 2px 2px 2px #efefef;
    float: left;
    margin: 0 0 20px 0;
    padding: 10px;
    width: 100%;
}

.usersig_row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.usersig_row label {
    font-size: 115%;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 5px;
}

.usersig_row input {
    width: 100%;
    max-width: 340px;
    height: 40px;
    padding: 0 15px;
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 0.3rem;
    color: var(--gray-dark);
}

.usersig_row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.usersig_row label {
    font-size: 115%;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 5px;
}

.usersig_row input {
    width: 100%;
    max-width: 300px;
    height: 40px;
    padding: 0 15px;
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 0.3rem;
    color: var(--gray-dark);
}

.usersig_row .sign_forget {
    margin: 5px 0 0;
}

.usersig_row .sign_forget a {
    background-color: var(--lighter);
    padding: 9px 15px;
    font-size: 110%;
    border-radius: 0.3rem;
    text-align: center;
    max-width: 300px;
    display: block;
}

.usersig_row:last-child {
    flex-direction: row;
}

.usersig_row .sign_forget a:hover {
    background-color: var(--gray-dark);
    color: var(--white);
}

.usersig_row input[type='submit']:hover {
    color: var(--white);
}

.usersig_row label sub {
    color: var(--danger);
}

table.tablesorter thead tr .header {
    position: relative;
    padding-right: 35px !important;
}

table.tablesorter thead tr .header:after {
    content: '\f0dc';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

table.tablesorter thead tr .header.headerSortDown:after {
    content: '\f0dd';
}

table.tablesorter thead tr .header.headerSortUp:after {
    content: '\f0de';
}

/*vision mission paragraph created by Nivetha 09-09-2022*/

.ms-auto {
    margin-left: 150px !important;
}

/*vision mission paragraph*/

/*created by Nivetha 09-09-2022*/

.gallerySection .carouselGalleryCard img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.banner_parent .innerBanner img {
    opacity: 0.36 !important;
}

/**/

.i18n-ta .bannerCaption h1 {
    font-size: 320%;
    line-height: 60px;
}

.i18n-ta h2,
.h2 {
    font-size: 150%;
}

.i18n-ta .fs-4 {
    font-size: 100% !important;
}

.i18n-ta .btn-lg {
    font-size: 110.25%;
}

.i18n-ta .newsBox .newsHeading {
    font-size: 110%;
}

.i18n-ta .str_wrap {
    font-size: 10px;
}

.i18n-ta .zigZagItems h3 {
    font-size: 100%;
}

.i18n-ta .fs-5 {
    font-size: 1rem !important;
}

.i18n-ta .fs-1 {
    font-size: 100% !important;
}

.i18n-ta .specialProjects .fs-2 {
    font-size: 1.2rem !important;
}

.i18n-ta .footerLinks {
    font-size: 100% !important;
}

.i18n-ta ul,
ol {
    font-size: 90% !important;
}

.i18n-ta h3.sub_tit2 {
    font-size: 115% !important;
}

.i18n-ta table td p {
    font-size: 95% !important;
}

.i18n-ta .numberedList li {
    font-size: 100.5% !important;
}

.i18n-ta .fs-3 {
    font-size: 1.2rem !important;
}

.i18n-ta .mb-md-4 {
    margin-bottom: 1rem !important;
}

.i18n-ta .fs-6 {
    font-size: 0.8rem !important;
}

.i18n-ta table.table {
    font-size: 110% !important;
}

.i18n-ta table.table tr td {
    font-size: 90% !important;
}

.contactBox img {
    width: 100%;
    height: 180px;
    max-width: 180px;
    object-fit: cover;
}

.infocus_slider .inf_sl_cnt {
    background: #f1f1f1;
    padding: 20px 10px;
}

.infocus_slider .inf_sl_cnt p {
    font-size: 15px;
    color: #304764;
    line-height: 24px;
    text-align: left;
}

.infocus_slider .item:hover .inf_sl_cnt {
    background-color: #fff;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.infocus_slider .item.image_des1 .inf_sl_img img {
    border: 1px solid #c4d0cf;
    border-radius: 13px;
}

.infocus_slider .item.image_des1 .inf_sl_cnt {
    margin-top: -10px;
    border-radius: 13px;
}

.infocus_slider .item.image_des2 .inf_sl_img img {
    border: 1px solid #c4d0cf;
    border-radius: 0 50px 0 0;
    height: 250px;
    object-fit: cover;
}

.infocus_slider .item.image_des2 .inf_sl_cnt {
    border-radius: 0px 0px 0px 50px;
    background: #f1f1f1 url(../images/pattern-dots2.svg) 100% 100% repeat-x;
    background-size: 12px;
}

.infocus_slider .item.image_des3 .inf_sl_img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    cursor: default;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 3px rgba(115, 114, 23, 0.8);
}

.infocus_slider .item.image_des3 .inf_sl_cnt {
    width: 100%;
    padding: 20px 26px;
    position: relative;
    cursor: default;
    box-shadow: inset 0 0 0 0 rgb(255, 255, 255), inset 0 0 0 16px rgb(113, 189, 186), 0 1px 2px rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.infocus_slider .item.image_des1 {
    box-shadow: 2px 2px 9px 9px #1b827d;
    border-radius: 13px;
}

.infocus_slider .item.image_des4 .inf_sl_img {
    border-radius: 70px 70px 0px 0px;
    border-top: 7px solid #1a636f;
}

.infocus_slider .item.image_des4 {
    box-shadow: 5px 6px 4px #000;
    border-radius: 70px 70px 0px 0px;
}

.infocus_slider .item .hover_circle:after {
    position: absolute;
    background-color: #b41225;
    bottom: 0;
    left: 0;
    display: block;
    width: 40%;
    height: 5px;
    content: '';
    transition: all 0.2s;
}

.infocus_slider .owl-item.active:nth-child(even) .item .hover_circle:after {
    background-color: #b41225;
}

.infocus_slider .owl-item.active:nth-child(odd) .item .hover_circle:after {
    background-color: #2268ab;
}

.infocus_slider .owl-item:hover .item .hover_circle:after {
    width: 100%;
    transition: all 0.2s;
}

.focus_btn .btn {
    padding: 12px 25px;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    font-size: 0;
    border: 2px solid var(--gray-light);
    border-radius: 10%;
    position: relative;
    color: var(--gray-light);
}

.focus_btn .btn:hover {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.infocus_slider .item:hover .inf_sl_cnt .focus_btn .btn {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.focus_btn .btn:hover:after,
.infocus_slider .item:hover .inf_sl_cnt .focus_btn .btn:after {
    color: var(--blue);
}

.focus_btn .btn.read_more_arrow:after {
    position: absolute;
    right: 0;
    font-size: 20px !important;
    top: 2px;
    left: 0;
    content: '\f178';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gray-light);
}

.infocus_slider .inf_sl_cnt {
    height: 160px;
}

/*
.slde_nav_top_rg .owl-nav {
    position: absolute;
    right: 0;
    top: -80px;
}
*/

.grwoth_service {
    /*background: url(../images/chennai5.jpg) no-repeat top left / 100% auto;*/
    background: linear-gradient( rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/chennai-new.jpg);
}

.board-bg {
    background: url(../images/menu_bg.png);
    /*background: var(--white) url(../images/menu_bg.png) no-repeat bottom right / auto 100%;*/
}

.board-bg-pink {
    background: url(../images/menu_bgpink.png);
}

.board-bg-blue {
    background: url(../images/menu_bg-b.png);
}

.countersec {
    row-gap: 10px;
    transition: var(--transition);
}

.countersec img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.addbg {
    /* background-color: #ac78bf; */
    background-color: #10d9cf;
}

.evenbg {
    /*  background-color: #004d83; */
    background-color: #e380e1;
}

.addbg:hover {
    /* background-color: #d7c1df; */
    background-color: #66f3ed;
}

.evenbg:hover {
    /* background-color: #8db9ef; */
    background-color: #e7aaeb;
}

/* simpleTreeMenu */

ul.simpleTreeMenu {
    line-height: 1em;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-left: 0px;
}

ul.simpleTreeMenu ul {
    margin: 5px 0 0;
    padding-left: 30px;
}

ul.simpleTreeMenu li {
    margin: 0 0 5px 0;
    padding: 0px;
    list-style-position: inside;
}

ul.simpleTreeMenu li:last-child {
    margin-bottom: 0;
}

ul.simpleTreeMenu li:before {
    display: none !important;
}

ul.simpleTreeMenu li:after {
    content: '';
    position: absolute;
    left: 15px;
    top: 36px;
    height: calc(100% - 36px);
    border-left: 1px dashed var(--info-light);
}

ul.simpleTreeMenu li.Node,
ul.simpleTreeMenu li.Leaf {
    list-style-type: none;
    white-space: nowrap;
}

ul.simpleTreeMenu span.stm-icon {
    background-position: 5px 14px;
    background-repeat: no-repeat;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    height: 36px;
}

ul.simpleTreeMenu .stm-content {
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--blue-dark);
    color: var(--white);
    font-size: 14px;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 180px;
    text-align: center;
}

ul.simpleTreeMenu a,
ul.simpleTreeMenu a:visited {
    text-decoration: none;
}

ul.simpleTreeMenu li.Node>.stm-content:hover {
    opacity: 0.6;
    cursor: pointer;
}

ul.simpleTreeMenu li.Node:after {
    cursor: pointer;
}

ul.simpleTreeMenu li.selected .stm-content {
    background-color: var(--secondary);
}

ul.simpleTreeMenu li.EmptyNode {
    /* Override li.Node with your EmptyNode preferences here: */
    color: #808080;
}

ul.simpleTreeMenu li.expanded {
    list-style-image: none;
}

ul.simpleTreeMenu .stm-content:before {
    content: '';
    position: absolute;
    left: -15px;
    width: 15px;
    border-bottom: 1px dashed var(--info-light);
    top: 17px;
}

ul.simpleTreeMenu>li>.stm-content:before {
    display: none;
}

ul.simpleTreeMenu .stm-content+ul .stm-content {
    background-color: var(--secondary);
}

ul.simpleTreeMenu .stm-content+ul .stm-content+ul .stm-content {
    background-color: var(--primary);
}

.pdf_icon:after {
    content: "\f1c1";
    font-family: FontAwesome;
    font-size: 20px;
    padding-left: 5px;
    color: #ff5b27;
}

ul.simpleTreeMenu .stm-content+ul .stm-content+ul .stm-content+ul .stm-content {
    background-color: var(--blue);
}

ul.simpleTreeMenu .stm-content+ul .stm-content+ul .stm-content+ul .stm-content+ul .stm-content {
    background-color: var(--blue-medium);
}

ul.simpleTreeMenu .stm-content+ul .stm-content+ul .stm-content+ul .stm-content+ul .stm-content+ul .stm-content {
    background-color: var(--info);
}

#messages div.status {
    z-index: 5;
    position: fixed;
    top: 32px;
    right: 8px;
}

#search-form .form-text {
    width: 50%;
}

ol.search-results {
    margin-bottom: 15px;
}

.search-results li {
    padding: 5px;
}

.search-results li:nth-child(odd) {
    background: #ededed;
}