/* Font */
@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/Jost-Regular.woff2') format('woff2'),
  url('../fonts/Jost-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Italic.woff2') format('woff2'),
      url('../fonts/Cormorant-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Regular.woff2') format('woff2'),
      url('../fonts/Cormorant-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Medium.woff2') format('woff2'),
      url('../fonts/Cormorant-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Regular.woff2') format('woff2'),
      url('../fonts/NotoSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Bold.woff2') format('woff2'),
      url('../fonts/NotoSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-Medium.woff2') format('woff2'),
      url('../fonts/NotoSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('../fonts/NotoSans-SemiBold.woff2') format('woff2'),
      url('../fonts/NotoSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background-color:#dadada;
  position:relative;
  background: #dadada url(../img/tow-columns-background.png) center top repeat-y;
}

body.about{  
  background: #dadada url(../img/one-columns-background.png) center top repeat-y;
}

/*body:before{
  content: '';
  position: absolute;
  top: 0;
  left: 41.6%;
  width:2px;
  height: 100%;
  background-color:#eceef0;
  z-index: 1;
}

body:after{
  content: '';
  position: absolute;
  top: 0;
  right: 41.6%;
  width:2px;
  height:100%;
  background-color:#eceef0;
  z-index: 1;

}*/

::-webkit-scrollbar {
  width:15px;
  -webkit-appearance: none;
}

::-webkit-scrollbar-thumb {
  background-color:#000000;
  border-radius: 10px;
  border:2px solid #ffffff;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

html,body{
  overflow-x: hidden;
}
body.active{
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
a {
  color: inherit;
  text-decoration: none;
}
a {
  color: #2f0802;
  font-family: Arial, Helvetica, sans-serif;
}
h1,
h2,
h3,
h4 {
  color:var(--black);
  font-family: Arial, Helvetica, sans-serif;
}
*:focus {
  outline: none;
}
button:focus {
  outline: none;
}
button {
  border: 0;
}
ul li {
  list-style: none;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
}
a:hover {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
}

.container {
  width:100%;
  max-width:956px;
  margin: auto;
}

:root {
  --white:#ffffff;
  --textcolor:#878787;
}

/* Topbar Css Start */
.topbar{
  float:left;
  width:100%;
  height:104px;
  background-size:cover;
  background-position:center;
  position:relative;
  z-index:11;
}

.topbar_social ul{
  display:flex;
  justify-content:flex-end;
}
/* Topbar Css End */

/* Header Css Start */
header{
  float:left;
  width:100%;
  background:var(--white);
  padding:26px 0px;
  position:relative;
  z-index:11
}

.header_inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
}

.logo a img{
  display:block;
}

.hdr_contact{
  margin-bottom:9px;
}

.hdr_contact p{
  font-size: 14px;
  color: #6F6F6E;
  letter-spacing: .75px;
  line-height: 25px;
  text-align:right;
}

.hdr_contact p a{
  color:#68808f;
  margin-left:9px;
}

.navbar{
  margin-top:8px;
}

.navbar nav ul{
  display:flex;
  column-gap:34px;
}

.navbar nav ul li{
  position:relative;
}

.navbar nav ul li:before{
  content:'|';
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  right:-20px;
  color:#c4c4c4;
}

.navbar nav ul li a{
  color: #9aacb9;
  line-height:18px;
  font-size:13px;
  text-transform:uppercase;
  position:relative;
  padding:9px 0;
}

.navbar nav ul li a:before{
  content:'';
  position:absolute;
  bottom:0;
  width:100%;
  height:4px;
  background-image:url(../img/hover_line.jpg);
  transition:all 0.6s;
  opacity:0;
  visibility:hidden;
  background-position: center;
  background-size: contain;
}

.navbar nav ul li a:hover:before{
  opacity:1;
  visibility:visible;
}
.navbar nav ul li.active a:before{
  opacity:1;
  visibility:visible;
}

.navbar nav ul li:last-child:before{
  content:none;
}
/* Header Css End */

/* Banner Css Start */
.banner_main{
  float:left;
  width:100%;
  margin:14px 0 28px;
  position:relative;
  z-index:11;
}

.banner_img{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap:2px;
}

.banner_img_itm img{
  display:block;
  filter: grayscale(1);
  transition:all 0.5s;
  width:100%;
  aspect-ratio:3.17 / 4.84;
  object-fit:cover;
}

.banner_img_itm:hover img{
  filter: grayscale(0);
}
/* Banner Css End */

/* Welcome Section Css Start */
.welcome_main{
  float:left;
  width:100%;
  margin-bottom: 56px;
}

.welcome_innr{
  background-color:#f2f2f2;
  padding: 22px 16px;
  display:flex;
  justify-content:space-between;
}

.welcome_inr_lft{
  width:50%;
}
.welcome_inr_rgt{
  width:47%;
   position:relative;
  z-index:11;
}

.welcome_inr_rgt iframe{
  width:100% !important;
}

.welcome_cnt{
  position:relative;
  z-index:11;
}

.welcome_cnt h1{
  font-family: Helvetica;
  font-size: 17px;
  color: #575756;
  line-height: 25px;
  font-weight:400;
}

.welcome_cnt p{
  color: #878787;
  font-family: arial;
  font-size:13px;
  margin-bottom:10px;
  line-height: 25px;
}

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

.welcome_cnt p a{
  color:#68808f;
}

.welcome_rgt_title{
  border-bottom: 7px solid #99ABB8;
  position:relative;
  z-index:11;
}

.welcome_rgt_title h2{
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-weight:400;
  color:var(--white);
  margin: 0 7px 0 32px;
  background: #99ABB8;
  padding: 5px 10px 0 10px;
  border-radius: 21px 21px 0 0;
  display:inline-block;
  width:132px;
  text-align:center;
}
/* Welcome Section Css End */

/* Footer Css Start */
footer{
  float:left;
  width:100%;
  background-color:#9d9d9c;
  padding-top:10px;
  position:relative;
  z-index:111;
  height:77px;
}

footer:before{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:9px;
  background:url(../img/footer-bg.png);
  background-position:left;
}

.ftr_link ul{
  display:flex;
  justify-content:center;
  column-gap:26px;
}

.ftr_link ul li a{
  font-family: Helvetica;
  color:#dadada;
  letter-spacing: 1px;
  font-size:11px;
  line-height: 25px;
  text-transform:uppercase;
  position:relative;
}

.ftr_link ul li a:before{
  content: '|';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  color: #dadada;
  font-size:11px;
}

.ftr_link ul li:last-child a:before{
  content:none;
}

.ftr_btm{
  display:flex;
  justify-content:space-between;
  margin-top: 5px;
}

.ftr_contact ul{
  display:flex;
  column-gap:15px;
}

.ftr_contact ul li{
  color:var(--white);
  font-family: Helvetica;
  font-size: 11px;
}

.ftr_contact ul li:last-child a{
  margin-left:0;
}

.ftr_contact ul li a{
  color:var(--white);
  font-family: Helvetica;
  font-size: 11px;
  margin-left:10px;
}

.ftr_copyright ul{
  display:flex;
  column-gap:18px;
}

.ftr_copyright ul li{
  color:#D1D3D4;
  font-family: Helvetica;
  font-size: 11px;
  position:relative;
}

.ftr_copyright ul li a{
  color:#D1D3D4;
  font-family: Helvetica;
  font-size: 11px;
}

.ftr_copyright ul li:before{
  content: '|';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right:-10px;
  color: #D1D3D4;
  font-size:11px;
}

.ftr_copyright ul li:last-child:before{
  content:none;
}
/* Footer Css End */

/* About Page Css Start */
.breadcrumb{
  float:left;
  width:100%;
  margin-top:14px;
  margin-bottom:11px;
}

.breadcrumb_inr ul{
  display:flex;
  justify-content:flex-end;
  column-gap:10px;
}

.breadcrumb_inr ul li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #878787;
  line-height: 25px;
  position:relative;
}

.breadcrumb_inr ul li a{
  color:#68808f;
}

.breadcrumb_inr ul li:before{
  content: '|';
  position: absolute;
  top:0px;
  right:-6px;
  color: #878787;
  font-size:11px;
}

.breadcrumb_inr ul li:last-child:before{
  content:none;
}

.about_main{
  float:left;
  width:100%;
  margin-bottom:73px;
}

.about_inr{
  background-color:var(--white);
  padding:61px 0;
  display:flex;
}

.about:before{
  content:none;
}

.about_lft{
  width:66.7%;
  position: relative;
  z-index: 99;
}

.about_lft:before {
  content: '';
  position: absolute;
  top: -61px;
  right:0;
  width: 2px;
  height: calc(100% + 121px);
  background-color: #eceef0;
  z-index: 1;
}

.about_rgt{
  width:33.17%;
  padding:0 27px 0 30px;
}

.about_lft_img img{
  display:block;
}

.about_rgt_cnt h1{
  font-family: Helvetica;
  font-size: 17px;  
  color: #575756;
  font-weight:400;
  line-height: 25px;
  margin-bottom:15px;
}

.about_rgt_cnt p{
  color: #878787;
  font-family: arial;
  font-size: 13px;
  line-height:25px;
  margin-bottom:15px;
}

.about_rgt_cnt p:last-child{
  margin-bottom:0;
}
/* About Page Css End */

/* Services Page Css Start */
.srvc_main{
  float:left;
  width:100%;
  margin-bottom:73px;
}

.srvc_inr{
  background-color:var(--white);
  padding:80px 0 25px;
      position: relative;
    z-index: 111;
}

.srvc_inr h1{
  font-family: Helvetica;
  font-size: 17px;
  color: #575756;
  font-weight:400;
  line-height: 25px;
  padding-left:30px;
  text-transform:uppercase;
  margin-bottom:3px;
}

.srvc_inr_row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap: 57px;
  padding: 0 30px;
}

.srvc_itm{
  position:relative;
}

.srvc_itm:before {
  content: '';
  position: absolute;
  top: -108px;
  right: -29px;
  width: 2px;
  height: calc(100% + 135px);
  background-color: #eceef0;
  z-index: 1;
}

.srvc_cnt h2{
  font-family: Helvetica;
  font-size: 15px;
  font-weight:400;
  color: #9aacb9;
  line-height: 18px;
  margin-bottom:19px;
}

.srvc_cnt p{
  color:#878787;
  font-family:arial;
  font-size:13px;
  line-height:25px;
  margin-bottom:15px;
}

.srvc_itm_img img{
  display:block;
  margin:0 auto;
}
/* Services Page Css End */

/* Testimonials Page Css Start */
.testi_main footer{
  position:fixed;
  bottom:0;
}

.testimonials_main{
  float:left;
  width:100%;
  margin-bottom:73px;
}

.testimonials_inr{
  background-color: var(--white);
  display:flex;
  justify-content:space-between;
}

.testi_lft{
  width: 66.7%;
  padding:42px 0 61px;
  position:relative;
  z-index:11;
}

.testi_lft:before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:204px;
  height:173px;
  background:url(../img/testimonials-bg.jpg);
}

.testi_lft:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height:100%;
  background-color: #eceef0;
  z-index: 1;
}

.testi_rgt{
  width:33.17%;
  padding: 61px 27px 61px 30px;
}

.testi_cnt{
  max-width:559px;
  margin:0 auto;
  position:relative;
  z-index:11;
}

.testi_cnt p{
  text-align: right;
  line-height: 20px;
  font-size: 13px;
  color: #878787;
  font-style:italic;
}

.testi_author p{
  text-align: right;
  line-height: 20px;
  font-size: 13px;
  color:#9AACB9;
  font-weight:bold;
  font-style:normal;
}

.testi_rgt_top h1{
  font-family: Helvetica;
  font-size: 17px;
  font-weight:400;
  color: #575756;
  line-height: 25px;
  margin-bottom:15px;
}

.testi_rgt_top p{
  text-align: left;
  line-height:25px;
  font-size: 13px;
  color: #878787;
}

.write_testi{
  margin-top:55px;
}

.write_testi h2{
  font-family: Helvetica;
  font-size: 15px;
  color: #9aacb9;
  line-height: 25px;
  font-weight:400;
  margin-bottom:15px;
}

.write_testi form textarea{
  border:2px solid #9AACB9;
  height:94px;
  width:100%;
  font-family: Arial, Helvetica, sans-serif;
  display:block;
}

.testi_send_btn{
  text-align:right;
  margin-top:20px;
}

.testi_send_btn input{
  display:inline-block;
  background:#9aacba;
  border:1px solid #ffffff;
  color:var(--white);
  width:82px;
  padding:5px 8px;
  box-shadow: -0.5px 0.5px 0px 3px #9aacba;
  letter-spacing:1px;
}
/* Testimonials Page Css End */

/* Blog Page Css Start */
body.blog .blog_main{
  margin-bottom:150px;
}

.blog_main{
  float:left;
  width:100%;
  margin-bottom:22px;
}

.blog_inr{
  background-color:var(--white);
  padding:30px;
  display:flex;
  position:relative;
  z-index:11;
}

.blog_lft{
  width:74.34%;
  border-right: 1px solid #b6b7b8;
}

.blog_rgt{
  width:25.17%;
}

.blog_itm{
  display:flex;
}

.blog_img{
  width:30.1%;
}

.blog_img img{
  display:block;
}

.blog_cnt{
  width:64.6%;
  background: #eee none repeat scroll 0 0;
  box-shadow: 4px 5px 10px -4px #ccc;
  box-sizing: border-box;
  padding: 24px 15px 0;
}

.blog_date{
  color: #68808f;
  font-family: "trebuchet MS";
  font-size: 14px;
  font-style: italic;
  line-height:16px;
}

.blog_cnt h2{
  margin-bottom:17px;
}

.blog_cnt h2 a{
  color:#68808f;
  font-family: "trebuchet MS";
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  line-height: 20px;
  display:inline-block;
}

.blog_cnt p{
  font-family: "trebuchet MS";
  font-size:14px;
  line-height:25px;
  color:#68808f;
  font-style: italic;
  font-weight:400;
}

.read_blog{
  text-align:right;
  margin-top:42px;
}

.read_blog a{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color:#68808f;
  line-height:20px;
}

.pagination_btn{
  margin-top:46px;
}

.pagination_btn ul{
  display:flex;
  column-gap:15px;
}

.pagination_btn ul li{
  font-family: Arial, Helvetica, sans-serif;
  color: #6d6e70;
  font-size:14px;
  line-height:20px;
}

.blog_rgt_cnt{
  padding-left:30px;
}

.blog_rgt_cnt h1{
  font-family: "trebuchet MS";
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
  padding-bottom:5px;
  color: #68808f;
}

.blog_rgt_cnt ul{
  padding-bottom:40px;
  border-bottom: 2px solid #dbdbdc;
}

.blog_rgt_cnt ul li a{
  color:#68808f;
  font-size:15px;
  line-height:34px;
  font-family: Arial, Helvetica, sans-serif;
}

.blog_dtl .blog_inr{
  padding:32px 31px;
}

.blog_dtl .blog_cnt{
  background:transparent;
  box-shadow:none;
  padding:0 30px 20px 0;
  width:100%;
  border-bottom: 2px solid #CCCCCC;
  margin-bottom:10px;
}

.blog_dtl .blog_cnt .blog_date{
  font-family: Arial, Helvetica, sans-serif;
  font-style:normal;
  margin-bottom: 2px;
}

.blog_dtl .blog_cnt h2{
  font-size: 18px;
  font-weight: bold;
  color:#68808f;
  font-family: Helvetica;
  line-height: 20px;
  margin-bottom: 11px;
}

.blog_dtl .blog_cnt p{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #6d6e70;
  font-style:normal;
  margin-bottom:20px;
}

.return_btn{
  margin-top:30px;
}

.return_btn a{
  font-size: 15px;
  font-weight: normal;
  line-height: 20px;
  color:#68808f;
}
/* Blog Page Css End */

/* Gallery Page Css Start */
.gallery_main{
  float:left;
  width:100%;
  margin-bottom:73px;
}

.gallery_inr{
  background-color:var(--white);
  padding:61px 0;
  display:flex;
  align-items:center;
}

.gallery_lft {
  width: 66.7%;
  padding:0 30px;
  position:relative;
  z-index:111;
}

.gallery_lft:before{
  content: '';
  position: absolute;
  top: -61px;
  right: 0;
  width: 2px;
  height: calc(100% + 121px);
  background-color: #eceef0;
  z-index: 1;
}

.gallery_rgt {
  width: 33.17%;
  padding:0 27px 0 30px;
}

.gallery_slider{
  position:relative;
}

.slider_lft_arw, .slider_rgt_arw{
  cursor:pointer;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.slider_lft_arw img, .slider_rgt_arw img{
  display:block;
}

.slider_lft_arw{
  left:10px;
}

.slider_rgt_arw{
  right:10px;
}

.slider-for{
  max-width:446px;
  margin:0 auto;
}

.gallery_cat{
  margin-left:20px;
}

.gallery_cat ul li a{
  font-family: Arial, Helvetica, sans-serif;
  font-size:15px;
  line-height: 25px;
  color:#68808f;
  padding: 18px 0;
  display:block;
}

.gallery_cat ul li ul{
  margin-left:22px;
}
.gallery_cat ul li ul li a{  
  padding:10px 0;
  border-top: 1px solid #ccc;
}

.gallery_cat ul li ul li{
  position:relative;
}

.gallery_cat ul li ul li:before{
  content:'';
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  left:-16px;
  background:url(../img/treeview-arrow.jpg);
  width:7px;
  height:8px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  visibility:hidden;
}

.gallery_cat ul li ul li.active:before{
  opacity:1;
  visibility:visible;
}

.glry_nav {
  width: 66.7%;
  position:relative;
  margin-top:25px;
}

.thumb-slide{
  margin:0 5px;
  cursor:pointer;
}

.slider-nav{
  max-width:575px;
  margin:0 auto;
}

.thumb-slide img{
  display:block;
  border: 3px solid #CCC;
  height:53px;
  object-fit:cover;
  width:100%;
}

.thumb-slide.slick-current img {
  border: 3px solid #616161;
}

.nav_lft, .nav_rgt{
  cursor:pointer;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}

.nav_lft img, .nav_rgt img{
  display:block;
}

.nav_lft{
  left:14px;
}

.nav_rgt{
  right:14px;
}
/* Gallery Page Css End */

/* Contact Page Css Start */
.contact_main{
  float:left;
  width:100%;
  margin-bottom:110px;
}

.contact_inr{
  background-color:var(--white);
  padding:80px 30px 25px;
}

.contact_inr h1{
  font-family: Helvetica;
  font-size: 17px;
  color: #575756;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact_inr_row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap: 57px;
}

.contact_itm{
  position:relative;
}

.contact_itm:before {
  content: '';
  position: absolute;
  top: -108px;
  right: -29px;
  width: 2px;
  height: calc(100% + 135px);
  background-color: #eceef0;
  z-index: 1;
}

.contact_itm h2{
  font-family: Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: #9aacb9;
  line-height: 18px;
  margin-bottom: 19px;
}

.contact_itm p{
  color: #878787;
  font-family: arial;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 15px;
}

.contact_info ul li{
  color: #878787;
  font-family: arial;
  font-size: 13px;
  line-height:25px;
  margin-bottom:5px;
}

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

.contact_info ul li a{
  color:#9aacb9;
  display:inline-block;
  margin-left:5px;
}

.contact_form{
  margin-top:25px;
}

.contact_frm_grp{
  margin-bottom:20px;
}

.contact_frm_grp input{
  color: #9AACB9;
  border:2px solid #9AACB9;
  font-style: italic;
  width: 100%;
  display:block;
  font-family: Helvetica;
  font-weight: normal;
  padding:4px;
}

.contact_frm_grp input::placeholder{
  color: #9AACB9;
  font-style: italic;
  width: 100%;
  display:block;
  font-family: Helvetica;
  font-weight: normal;
}

.contact_frm_grp textarea{
  color: #9AACB9;
  border:2px solid #9AACB9;
  font-style: italic;
  width: 100%;
  display:block;
  font-family: Helvetica;
  font-weight: normal;
  padding:2px;
  height:50px;
}

.contact_frm_grp textarea::placeholder{
  color: #9AACB9;
  font-style: italic;
  width: 100%;
  display:block;
  font-family: Helvetica;
  font-weight: normal;
}

.contact_submit{
  text-align:right;
  margin-top:30px;
}

.contact_submit input{
  display: inline-block;
  background: #9aacba;
  border: 1px solid #ffffff;
  color: var(--white);
  width: 82px;
  padding: 5px 8px;
  box-shadow: -0.5px 0.5px 0px 3px #9aacba;
  letter-spacing: 1px;
  cursor:pointer;
}
/* Contact Page Css End */

/* Terms Page Css Start */
.terms_main{
  float:left;
  width:100%;
  margin-bottom:10px;
  position:relative;
  z-index:999;
}

.terms_inr{
  background-color:var(--white);
  padding:25px;
}

.terms_inr h1{
  font-family: Helvetica;
  font-size: 17px;
  color: #575756;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom:25px;
}

.terms_inr h2{
  font-family: Helvetica;
  font-size: 15px;
  color: #9aacb9;
  font-weight: normal;
  line-height: 25px;
}

.terms_inr p {
  color: #878787;
  font-family: arial;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 10px;
}

.terms_inr ul{
  padding-left:15px;
  margin-bottom:25px;
}

.terms_inr ul li{
  color: #878787;
  font-family: arial;
  font-size: 13px;
  line-height: 25px;
  list-style:disc;
}

.terms_inr p a, .terms_inr ul li a{
  color:#68808f;
}
/* Terms Page Css End */

/* Sitemap Page Css Start */
.sitemap_main{
  float:left;
  width:100%;
  margin-bottom:73px;
}

.sitemap_inr {
  background-color: var(--white);
  padding: 61px 0;
  display: flex;
}

.sitemap_lft {
  width: 66.7%;
  position:relative;
}

.sitemap_lft:before {
  content: '';
  position: absolute;
  top: -61px;
  right: 0;
  width: 2px;
  height: calc(100% + 121px);
  background-color: #eceef0;
  z-index: 1;
}

.sitemap_rgt {
  width: 33.17%;
  padding: 0 27px 0 30px;
}

.sitemap_img img {
  display: block;
}

.sitemap_rgt h1 {
  font-family: Helvetica;
  font-size: 17px;
  color: #575756;
  font-weight: 400;
  line-height: 25px;
}

.sitemap_rgt ul li{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #878787;
  line-height: 25px;
  list-style:disc;
}

.sitemap_rgt ul li a{
  color:#68808f;
  text-transform:uppercase;
}

.sitemap_rgt ul li ul{
  padding-left:30px;
}

.sitemap_rgt ul li ul li{
  list-style:circle;
}

.sitemap_rgt ul li ul li ul li{
  list-style:disc;
}

.sitemap_rgt ul li ul li a{
  text-transform:initial;
}
/* Sitemap Page Css End */

body.contact footer{position:fixed;bottom:0;}