@charset "UTF-8";

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

* {
    outline: 0;
}

:root {
    --mainColor: #000000;
    --defaultColor: #fff;
    --paraColor: #858789;
    --btnColor: #6e8d86;
    --secondColor: #a4e5ea;
    --mainFont: 'Jost', sans-serif;
}

svg image {
    height: auto;
}


html {
    font-size: 62.5%;
}

.container.bigContainer {
    max-width: 1470px;
}


body, html {
    width: 100%;

}

 

body.sideBody {
    transform: translateX(260px);
    overflow-x: hidden;
}


.sectionGap {
    padding: 7.7rem 0;
}

b,
strong {
    font-weight: 700;
}

p {
    font-size: 1.6rem;
    line-height: 2.5rem;
    font-family: var(--mainFont);
    font-weight: 400;
    color: var(--paraColor);
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: var(--mainColor);
    font-weight: 700;
}

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

h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 6rem;
}

h2 {
    font-weight: 700;
    font-size: 4rem;
   
}

h3 {
    font-size: 3rem;
    line-height: 3rem;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--mainColor);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


a:hover {
    color: var(--secondColor);
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input#url,
select {
    background-color: transparent;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    -ms-border-radius: 0.4rem;
    border-radius: 0.4rem;
    color: var(--mainColor);
    border: 1px solid #c2c2c2;
    height: 5.4rem;
    padding: 0 1.6rem;
    outline: none !important;
    box-shadow: none;
}

textarea {
    background-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    -ms-border-radius: 0.4rem;
    border-radius: 0.4rem;
    border: 1px solid #c2c2c2;
    padding: 1.2rem 1.6rem;
    width: 100%;
    color: var(--mainColor);
    height: 17.4rem;
    outline: none !important;
}


select {
    border: 1px solid rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 0 1.1rem;
    background: url(images/arrow_bottom.svg) no-repeat calc(100% - 1.6rem) center transparent;
    background-size: 1.8rem;
    padding-right: 4rem;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}


::-webkit-input-placeholder {
    opacity: 0.7;
    color: var(--mainColor);
}

:-ms-input-placeholder {
    opacity: 0.7;
    color: var(--mainColor);
}

::-moz-placeholder {
    opacity: 0.7;
    color: var(--mainColor);
}

:-moz-placeholder {
    opacity: 0.7;
    color: var(--mainColor);
}

.form-group {
    margin-bottom: 2.8rem;
}

.labeltxt {
    font-weight: 300;
    margin-bottom: 1rem;
}


/* images alignment for wordpress content pages */
.alignright {
    float: right;
    margin: 0 0 2rem 2rem;
}

.alignleft {
    float: left;
    margin: 0 2rem 2rem 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    float: none;
    clear: both;
}


/* custom checkbox */

.form_input_check label {
    position: relative;
    margin: 0;
    padding-left: 4rem;
    display: inline-block;
}

.form_input_check label span {
    margin: 0;
    padding: 0;
}

.form_input_check label input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid #3E3E42;
    background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 2.2rem;
    height: 2.2rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(images/tick.svg) no-repeat center center;
    background-size: 1.5rem;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {

    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio */

.form_input_radio label {
    position: relative;
    margin: 0;
    padding-left: 3rem;
    display: inline-block;
}

.form_input_radio label span {
    margin: 0;
    padding: 0;
}

.form_input_radio label input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio label input[type="radio"] + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 2.2rem;
    height: 2.2rem;
    border: 2px solid var(--mainColor);
    border-radius: 100%;
    background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
    content: '';
    width: 1.2rem;
    height: 1.2rem;
    background: #4b0049;
    position: absolute;
    top: .6rem;
    left: .5rem;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {

    } */

.form_input_radio label input[type="radio"]:checked + span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */

/* back to top */

#scroll {
    position: fixed;
    right: 2rem;
    bottom: 11rem;
    cursor: pointer;
    width: 5.5rem;
    height: 5.5rem;
    background-color: var(--paraColor);
    display: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    line-height: 6.8rem;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    -webkit-box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 2rem 0px rgba(0, 0, 0, 0.2);
    z-index: 9;
}

#scroll:hover {
    background: var(--secondColor);
}

#scroll i {
    color: #fff;
    font-size: 4.4rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(1px, 3px);
    transform: translate(1px, 3px);
}

#scroll:hover i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(1px, -6px);
    transform: translate(1px, -6px);
}

/* navbar*/

.sticky {
    /* sticky top */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav > li {
    position: relative;
}

.navbar-nav > li:last-child {
    margin-right: 0;
}

.navbar-nav > li:first-child {
    margin-left: 0;
}

.navbar-nav > li > a {
    color: var(--mainColor);
    font-size: 1.7rem;
    line-height: 1.2;
    position: relative;
    font-weight: normal;
}


.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a, .navbar-nav > li.active > a {
    color: var(--mainColor);
}


/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 14rem;
    padding: 0;
    transition: 0.4s linear;
}

.sub-menu > li > a {
    color: var(--mainColor);
    display: block;
    width: 100%;
    padding: .6rem 1rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.sub-menu > li {
    width: 100%;
    display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
    color: var(--secondColor);
}


.navbar-nav > li:last-child > .sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}

.navmenu .navbar-nav > li.menu-item-has-children a::after {
    width: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}


/* for push-menu */
.navbar-collapse .navbar-toggler {
    display: none;
}

#navoverlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0 !important;
    z-index: 99;
}

/* for push-menu end*/
ul {
    margin-left: 0;
    padding-left: 0;
}

ul li {
    list-style: none;
}


 
/*================= global end here */


/* style start here */


.topBar {
    background-color: var(--btnColor);
    padding: 1rem 0;
}

.topBar .row {
    align-items: center;
}

.topBar p, .topBar a {
    color: var(--defaultColor);
}

.topBar .social_icon {
    text-align: right;
}

.topBar .social_icon a {
    margin-left: 1rem;
}

.navmenu {
    padding: 0rem 0;
    border-bottom: 2px solid #ececec;
}

.navmenu .navbar-brand {
    max-width: 25.6rem;
}

.navmenu .navbar-nav > li {
    margin-left: 3.6rem;
    padding: 3rem 0;
}

.navmenu .navbar-nav > li a {
    font-size: 1.5rem;
}

.navmenu .navbar-nav > li a::after {
    content: '';
    background-color: var(--secondColor);
    width: 8px;
    height: 8px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
    transition: 0.5s linear;
    visibility: hidden;
    opacity: 0;
}

.navmenu .navbar-nav > li.current-menu-item a::after, .navmenu .navbar-nav > li:hover a::after, .navmenu .navbar-nav > li.active a::after {
    visibility: visible;
    opacity: 1;
}


/* banner start */

section.bannerSec {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #ddd;
}

.banner-im {
    position: relative;
    top: -7rem;
}


section.bannerSec .row {
    align-items: center;
}

section.bannerSec .bannerTxt h1 {
    text-transform: uppercase;
    line-height: 6.6rem;
}

section.bannerSec .bannerTxt h1 span {
    font-weight: 300;
    display: block;
    text-transform: capitalize;
}

section.bannerSec .bannerTxt .btn {
    margin-top: 4rem;
}


.bannerSec .topLeft {
    position: absolute;
    top: -7rem;
    left: -8rem;
    z-index: 0;
    width: 16.6rem;
}

.bannerSec .bnrRtShp {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 20%;
    z-index: 0;
}

.bannerSec .tngShap {
    position: absolute;
    top: 4%;
    left: 39%;
    z-index: 0;
}

.shapeImg {
    height: 63rem;
    overflow: hidden;
    position: relative;
    top: -5rem;
}

.shapeImg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bnrShp.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: lighten;


}

button.slide-arrow {
    border: 1px solid var(--secondColor);
    background: #fff;
    color: var(--secondColor);
    border-radius: 100%;
    width: 3.3rem;
    height: 3.3rem;
    outline: 0;
}

button.slide-arrow.next-arrow {
    position: absolute;
    left: 106%;
    top: 50%;
    transform: translateY(-50%);
}

button.slide-arrow.prev-arrow {
    position: absolute;
    right: 106%;
    top: 50%;
    transform: translateY(-50%);
}


/* welcome section */

.wlcSec h2 {
    position: relative;
    text-align: center;
    margin-bottom: 5rem;
}

.wlcSec h2::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 2rem auto;
    width: 5.2rem;
    height: 0.3rem;
    background-color: var(--secondColor);
}

.wlcSec p {
    text-align: center;
    padding: 0 6.8rem;
}

.wlcSec .tngShap {
    position: absolute;
    right: 100%;
    top: -7.6rem;
    opacity: 0.1;
}

.wlcSec .container {
    position: relative;
}

/* video section */


.videoSec {
    background-image: url(images/vidbanner.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 5.5rem 0;

}

.videoSec .abtBox {
    background-color: var(--defaultColor);
    min-height: 64.2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 4.6rem;
    border-radius: 1rem;
}

.videoSec .abtBox h2 {
    margin-bottom: 4rem;
    position: relative;
}

.videoSec .abtBox h2::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 2rem auto;
    width: 5.2rem;
    height: 0.3rem;
    background-color: var(--secondColor);
}

.videoSec .abtBox .btn {
    margin-top: 3rem;
}

.vidBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.vidBox .plyBtn {
    background-color: #fff;
    color: var(--paraColor);
    border: 0;
    width: 9.6rem;
    height: 9.6rem;
    border-radius: 100%;
    font-size: 3rem;
    outline: 0;
    box-shadow: 0;
	display: flex;
    align-items: center;
    justify-content: center;
}


/* rpt section */
.rptSec {
    position: relative;
    overflow-x: hidden;
    padding-bottom: 13rem;
}

.rptSec .row {
    align-items: center;
}

.rptSec .rptShape {
    position: relative;
    width: 90%;
    margin-left: 0;
}


.rptSec .imgSqr {
    width: 33.3rem;
    height: 50rem;
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5rem;
    background-color: rgb(255 255 255 / 46%);
    background-size: cover;
    overflow: hidden;
    padding: 1.2rem;
}

.rptSec .imgSqr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5rem;
}

.rptSec .rptContent {
    padding-left: 10rem;
}

.rptSec .rptContent .btn {
    margin-top: 2.3rem;
}

.rptSec .rptContent h2 {
    /*font-weight: 400;*/
    position: relative;
    margin-bottom: 2rem;
}

.rptSec .rptContent h2::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 1rem 0;
    width: 5.2rem;
    height: 0.3rem;
    background-color: var(--secondColor);
}

.rptSec .loopBox:nth-child(even) .row {
    flex-direction: row-reverse;

}

.rptSec .loopBox:nth-child(even) .rptContent {
    padding-right: 10rem;
    padding-left: 0;
}

.rptSec .loopBox:nth-child(even) .rptShape {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: 0;
}

.rptSec .loopBox:first-child {
    padding-top: 0;
}

.rptSec .loopBox {
    padding-top: 9.5rem;
}

.rptSec .shp1 {
    position: absolute;
    left: -12rem;
    top: -9rem;
    width: 22.5rem;
}

img.shpSml {
    position: absolute;
    right: 5%;
    opacity: 0.2;
    top: 6%;
}

img.shpSmlCenter {
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
}

.btmShp1 {
    position: absolute;
    bottom: 11%;
    width: 21.3rem;
    left: -13rem;
    transform: rotate(71deg);
}

.btmShp2 {
    position: absolute;
    bottom: 20%;
    right: -10rem;
    width: 22.3rem;
    transform: rotate(9deg);
    opacity: 0.8;
}

.btmShpSml {
    position: absolute;
    right: 3rem;
    bottom: 16%;
    opacity: 0.1;
}

/* contact section */

.contSec {
    background-color: #344743;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contSec h5 {
    color: var(--secondColor);
    font-size: 1.8rem;
    font-weight: 400;
    position: relative;
    margin-bottom: 3rem;
}

.contSec h5::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 1rem auto;
    width: 5.2rem;
    height: 0.3rem;
    background-color: var(--secondColor);
}

.contSec h2 {
    margin-bottom: 3rem;
    color: var(--defaultColor);
}

.contSec .btn {
    background-color: transparent;
    border: 2px solid var(--secondColor);
    color: var(--secondColor);
}

.contSec .btn:hover {
    background-color: var(--secondColor);
    color: var(--btnColor);
}

.contSec .shp1L {
    position: absolute;
    bottom: -9rem;
    left: -2rem;
    opacity: 0.1;
}

img.shp2L {
    width: 5rem;
    opacity: 0.1;
    position: absolute;
    left: 22%;
    top: 5rem;
}

img.shp3L {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 30rem;
    transform: translateY(-50%);
    opacity: 0.1;
}

/* footer */

.footerSec .ftrBtm {
    background-color: #1b2724;
    text-align: center;
    padding: 1.3rem 0;

}

.footerSec .ftrBtm a {
    color: var(--defaultColor);
}

.footerSec .ftrBtm p {
    color: var(--defaultColor);
}

.footerSec .ftrbox {
    padding: 4.4rem 0;
}

.footerSec .ftrbox .ftrLogo h5 {
    margin-top: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.footerSec .ftrbox .ftrLogo span {
    display: block;
    font-size: 1.4rem;
    margin-bottom: .3rem;
}

.footerSec .ftrLink h5 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
}

.footerSec .ftrLink li {
    margin-bottom: 1.5rem;
    display: flex;

}

.footerSec .ftrLink li i {
    font-size: 1.5rem;
    margin-right: 1rem;
    line-height: 1.5;
}

.footerSec .ftrLink li a, .footerSec .ftrLink li span {
    line-height: 2rem;
    font-size: 1.5rem;
}

.footerSec .ftrLink .social_icon a {
    margin-right: 1rem;
}

.footerSec .ftrLink.lstBx {
    padding-left: 3rem;
}


/* service page */
.bannerSec.innerbanner {
    max-height: 30rem;
}

.bannerSec.innerbanner .banner-im {
    height: 28.7rem;
    width: 42rem;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.bannerSec.innerbanner img.tngShap {
    right: 4%;
    left: auto;
    width: 6rem;
}

section.rptSec.innerPage {
    border-bottom: 1px solid #ddd;
}


section.rptSec.innerPage img.shp1 {
    right: -10rem;
    left: auto;
    top: 0;
    transform: rotate(0deg);
    width: 18rem;
}

section.rptSec.innerPage img.shpSml {
    position: absolute;
    right: 2rem;
    opacity: 0.2;
    top: 50%;
    transform: translateY(-50%);
}

section.rptSec.innerPage .btmShp2 {
    position: absolute;
    bottom: 20%;
    right: auto;
    left: -11rem;
    width: 22.3rem;
    transform: rotate(10deg);
    opacity: 0.8;
}

section.rptSec.innerPage .btmShpSml {
    position: absolute;
    right: auto;
    bottom: 16%;
    left: 3rem;
    opacity: 0.1;
}

.wlcSec {
    position: relative;
}

.wlcSec .shp1 {
    position: absolute;
    right: 0;
    width: 22rem;
    top: -18rem;
    right: 0;
    transform: rotate(
            0deg
    );
}

.rptSec h3 {
    position: relative;
    margin-bottom: 5rem;
}

.rptSec h3::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 2rem 0;
    width: 5.2rem;
    height: 0.3rem;
    background-color: var(--secondColor);
}


/* abt section */

.rptContent ul li {
    color: var(--paraColor);
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.rptContent ul li::before {
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid var(--paraColor);
    border-right: 2px solid var(--paraColor);
    display: block;
    transform: rotate(
            45deg
    );
    position: absolute;
    left: 0;
    top: 5px;

}

.rptShape.abtImgBx .hatBx {
    position: absolute;
    top: 3.9rem;
    right: 1.9rem;
    width: 16rem;
}

.wlcSec.abtPg .tngShap {
    position: absolute;
    top: 60%;
}

.contactSec .mapBox {
    overflow: hidden;
    border-radius: 7px;
}

.contactSec .mapBox img {
    height: 100%;
    width: 100%;
}


.contactSec h4 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 5rem;
    margin-top: 3rem;
    text-transform: uppercase;
}

.contactSec h4::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 2rem 0;
    width: 5.2rem;
    height: 0.3rem;
    background-color: var(--secondColor);
}

.contactSec li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contactSec li a {
    color: var(--paraColor);
    display: block;
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.contactSec li span {
    display: block;
    background-image: url(images/contactShapImg.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    padding-right: 5px;
    color: #fff;
}

.contactSec ul {
    margin-top: 2rem;
}

.contactSec .frmDiv .form-control {
    border: 1px solid #c2c2c2;
    box-shadow: none;
    height: 5.4rem;
    font-size: 1.5rem;
}

.contactSec .frmDiv .form_group {
    position: relative;
    margin-bottom: 2rem;
}

.contactSec .frmDiv .form_group label {
    font-size: 1.5rem;
    font-weight: 400;
    position: absolute;
    left: 1.5rem;
    top: -10px;
    background-color: #fff;
    line-height: 2rem;
    color: var(--paraColor);
    padding: 0 0.5rem;
}

.contactSec .frmDiv .rbtImg {
    margin-bottom: 2rem;
}


.videoSec .vidModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 64%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s linear;
}

.videoSec .vidModal .contArea {
    background-color: #fff;
    width: 60%;
    max-height: 50rem;
    padding: 2rem;
    position: relative;
    border-radius: .6rem;
}

.videoSec .vidModal .closeIcon {
    position: absolute;
    right: -2.5rem;
    top: -2.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: #fff;
    text-align: center;
    line-height: 1.7rem;
    cursor: pointer;
    display: block;
    font-size: 1.5rem;
    color: #676666;
    font-weight: 700;

}

/* covid page */

.covidSec h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.covidSec h1::after {
    content: '';
    position: absolute;
    top: 0rem;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--secondColor);
}

.covidSec p {
    margin-bottom: 0.5rem;
}

.covidSec .covidCont {
    padding: 2rem;
    box-shadow: 1px 2px 14px 2px rgb(181 196 197 / 16%);
    border-radius: 1rem;
    margin-top: 4rem;
}

.covidContBtm {
    margin-top: 0rem;
}

.covidContBtm h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.covidContBtm ul li {
    margin-bottom: 1rem;
    list-style: disc;
    list-style-position: inside;
}

.covidContBtm ul li a {
    text-decoration: underline !important;
}

.downBx {
    display: flex;
    align-items: center;
}

.downBx h2 {
    margin-bottom: 0;
    margin-right: 1rem;
    margin-top: 0;
}

.downBx .appIcon a {
    width: 2.5rem;
    display: block;
}

.downBx .appIcon a:first-child {
    margin-right: 1rem;
}

.downBx .appIcon {
    display: flex;
    align-items: center;
    justify-self: center;

}


/* media page */
.pdfrow span {
    color: #949292;
    font-size: 1.2rem;
}


.pdfSec .nav-tabs .nav-link, .nav-tabs .nav-link.active {
    border: 0 !important;
    background: var(--secondColor);
    font-size: 2.6rem;
    padding: 1.5rem 3rem;
    color: #fff;
    clip-path: polygon(10% 0, 91% 0, 100% 100%, 0% 100%);
}

.nav-tabs .nav-link.active {
    background: var(--btnColor);
}

.pdfSec .nav-tabs .nav-item {
    margin-bottom: 0;
    margin-right: 2rem;
}

.pdfSec .pdfrow {
    margin-top: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 0.4rem;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 7%);
}

.pdfSec .pdfrow .box {
    padding-right: 1rem;
    width: 95%;
}

.pdfSec .downPdf {
    width: 5%;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.pdfrow .downPdf a {
    display: block;
    text-align: center;
}

.pdfrow .downPdf a img {
    width: 4rem;
    margin-left: auto;
}

.pdfrow .downPdf a b {
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

.pdfSec .pdfrow .box h4 {
    font-size: 1.9rem;
    margin: 0.51rem 0;
}

.pdfSec .pdfrow .box p {
    margin-bottom: 0.5rem;

}

.pdfSec .pdfrow .box .rdm {
    text-decoration: underline !important;
}

.pdfSec .nav-tabs {
    border-bottom: 2px solid var(--btnColor);
}

/**26.04.2021**/

.innerpg a.pdfBtn {
    background-color: #6e8d86;
    color: #fff;
    border-radius: 3rem;
    font-size: 20px;
    font-weight: 400;
    max-width: 230px;
    padding: 16px 30px;
    border: 2px solid transparent;
    text-transform: capitalize;
    display: block;
    margin: 30px auto;
    text-align: center;
}
.innerpg a.pdfBtn:hover {
    color: #6e8d86;
    background-color: transparent;
    border-color: #6e8d86;
}
.innerpg .comment-respond label {
    display: block;
    text-align: left;
    margin-bottom: 10px;
}
.innerpg p.comment-form-cookies-consent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.innerpg p.comment-form-cookies-consent label {
    margin-bottom: 0 !important;
    padding-left: 10px;
}
.innerpg .comment-respond input[type="submit"] {
    background-color: #6e8d86;
    color: #fff;
    border-radius: 3rem;
    font-size: 20px;
    font-weight: 400;
    max-width: 230px;
    padding: 16px 30px;
    border: 2px solid transparent;
    text-transform: capitalize;
    display: block;
    margin: 30px auto;
    text-align: center;
}
.innerpg .comment-respond input[type="submit"]:hover{
    color: #6e8d86;
    background-color: transparent;
    border-color: #6e8d86;
}
.innerpg .comments-area {
    padding-bottom: 7rem;
}
.innerpg ul, .innerpg ol{
    display: table;
    margin:0px auto;
}
.innerpg ul li, .innerpg ol li {
    color: var(--paraColor);
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}
.innerpg ul li::before, .innerpg ol li::before {
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid var(--paraColor);
    border-right: 2px solid var(--paraColor);
    display: block;
    transform: rotate( 
45deg
 );
    position: absolute;
    left: 0;
    top: 5px;
}
.applink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 7rem;
}
.applink a {
    display: inline-block;
    background-color: #6e8d86;
    color: #fff;
    border-radius: 3rem;
    font-size: 20px;
    font-weight: 400;
    max-width: 100%;
    padding: 15px 30px;
    border: 2px solid transparent;
    text-transform: capitalize;
    margin: 0;
    text-align: center;
}
.applink a:hover{
    color: #6e8d86;
    background-color: transparent;
    border-color: #6e8d86;
}