@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --heading: rgb(0 10 45);
  --para: #777777;
  --para-tint: #e4e4e4;
  --third: #fff;
  --helper: #2594d2;
  --helper-tint: #f3f4ff;
  --bg: rgb(249 249 255);
  --gradient: linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
  --shadpw: 0px 0px 20px 0px rgb(132 144 255 / 20%);
}

/* spacing 
desktop = 4.8rem */

html {
  font-size: 62.5%;
  font-family: "Karla", sans-serif;
}
.platecol p {
  overflow: hidden;
}
body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: ATC Harris,monospace;
}

h1 {
  color: var(--heading);
  font-size: 6rem;
  font-weight: 600;
}



a {
  text-decoration: none;
}

li {
  list-style: none;
}

.btn {
  text-transform: uppercase;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  position: relative;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 30px;
  min-width: 200px;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  text-align: center;
  background: #fff;
}
.btn:hover {
  color: rgb(255 255 255);
  background: none;
}
@keyframes rotate1 {
	from{
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
	to{
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@keyframes rotate {
	from{
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	to{
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
/* .rotate{
  animation: rotate 7s linear infinite;
} */
.rotate g g g path {
  animation: rotate 7s linear infinite;
}
.rotate1 g g g path {
  animation: rotate 7s linear infinite;
}

.section {
  padding: 3rem 0;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 9rem;
}

.grid-two-col {
  grid-template-columns: repeat(2, 1fr);
}

.grid-three-col {
  grid-template-columns: repeat(3, 1fr);
}

.grid-four-col {
  grid-template-columns: repeat(4, 1fr);
}

/* ===========================================
Header Section Start
======================================= */

.header {
  padding: 0px 6rem;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #2291d1;
}

.header .logo {
  /* width: 15%; */
  height: 3rem;
}

.navbar-lists {
  display: flex;
  gap: 4.8rem;
  list-style: none;
  align-items: center;
  margin-bottom: 0;
}
/* .bok-btn a::before {
  display: none;
} */

.navbar-link:link, .navbar-link:visited {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-family: ATC Harris,monospace;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.625;
  color: #4f4f4f;
  position: relative;
}
.navbar-lists li a::before {
  content: '';
  position: absolute;
  top: 53px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #979797;
  transition: all .5s ease;
  opacity: 0;
}
.navbar-lists li a:hover::before{
  opacity: 1;
}
.navbar-link:hover,
.navbar-link:active {
  color: var(--helper);
}

.mobile-navbar-btn {
  /* by default for normal screen we want to hide  */
  display: none;
  background: transparent;
  cursor: pointer;
  border: none;
}

.mobile-nav-icon {
  width: 5rem;
  height: 5rem;
  color: #212529;
}

/* for desktop or mobile menu-outline one must be visible  
and we need to hide the close menu icon
*/
.mobile-nav-icon[name="close-outline"] {
  display: none;
}

/* sticky Navbar */
.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  height: 8rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding-top: 0;
  padding-bottom: 0;
}


.arro {
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0px 35px 0 35px;
  z-index: 2;
}
.bok-btn a .book {
  min-width: 150px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.bok-btn a::after {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  width: 80px;
  height: 100%;
  background: #3958c4;
  transition: all .3s ease-in-out;
}
.bok-btn a {
  display: inline-block;
  position: relative;
  padding: 28px 0 28px 28px;
  background: #2291d1;
  color: #fff;
  font-size: 15px;
  font-family: ATC Harris,monospace;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.bok-btn a:hover::after {
  width: 100%;
}
.bok-btn a::before {
  display: none;
}

/* ===========================================
Hero  Section Start
======================================= */

.section-hero {
  background: rgb(34, 147, 209);
  color: #fff;
}

.section-hero-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-top-data {
  text-transform: uppercase;
  color: var(--heading);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--helper);
}

.hero-heading {
  text-transform: capitalize;
  font-size: 6.4rem;
  color: #fff;
  font-family: Canela,Georgia,serif;
  line-height: 1.2;
  font-weight: 500;
}

.hero-para {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  max-width: 60rem;
  color: #fff;
  border-bottom: 2px solid #ddd;
  padding-bottom: 3rem;
  font-size: 18px;
}

.section-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 80%;
  z-index: 1;
}

@keyframes water-wave {
  0% {
    border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  }
  50% {
    border-radius: 3% 97% 15% 85% / 72% 0% 100% 28%;
  }
  100% {
    border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
  }
}


/* =======================================
news section css
========================================== */

.news-section {
  margin-top: 50px;
  text-align: center;
}
.news-wrappe {
  background-color: #f4f4f4;
  padding: 90px;
  width: 980px;
  margin: 0 auto;
}
.news-wrappe .btn {
  display: inline-block;
  background: #2291d1;
  color: #fff;
  letter-spacing: 1px;
}
.news-wrappe .btn:hover{
  color: #2291d1!important;
  background-color: transparent;
  border:1px solid #2291d1!important;
}


.news-wrappe p {
  font-size: 18px;
  max-width: 520px;
  margin: 15px auto;
  line-height: 1.8;
}
.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2293d1;
  margin-bottom: 10px;
  font-weight: 600;
}
.title {
  font-family: Canela,Georgia,Times New Roman,serif;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 1px;
  margin: 15px 0;
}


/* design section css */
.design-section {
  padding: 80px 0;
}
.section-heading {
  font-size: 6rem;
  font-family: Canela,Georgia,Times New Roman,serif;
  line-height: 1.2;
  position: relative;
}
.d-content {
  margin: 30px;
}
.d-content p {
  font-size: 18px;
  margin: 30px 0;
}
.section-heading::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  background: #2291d1;
  top: -20px;
}
.image img {
  width: 80%;
}
.design-section.two .image {
  text-align: right;
}
/* brand section */
.brand img {
  width: 150px;
  height: 60px;
  object-fit: contain;
}
.brand {
  padding: 30px;
  text-align: center;
}
.brand-section .section-heading::before {
  display: none;
}
.brand-section {
  padding: 50px 0;
}


/* news section css */
.news-section .image img {
  width: 100%;
  height: 670px;
  object-fit: cover;
}
.pd {
  background: #2291d1;
  color: #fff;
  padding-right: 0;
  padding-left: 0;

}
.news-section .btn {
  display: inline-block;
}
.newstxt .subtitle {
  color: #fff;
}
.newstxt .title {
  font-size: 46px;
}
.newstxt p {
  font-size: 18px;
  margin: 22px 0;
}
.newstxt{
  padding: 120px;
  text-align: left;
}


.news-section.two .news-wrappe {
  background: #2291d0;
  color: #fff;
  width: 1140px;
  margin: 0 auto;
}
.news-section.two .title {
  font-size: 48px;
}

.platecol {
  padding: 30px;
}
.platecol img {
  width: 180px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px auto;
}
.platecol h2 {
  font-size: 3.125rem;
  font-family: Canela,Georgia,Times New Roman,serif;
  margin: 20px 0;
}
.row.platforms {
  margin-top: 50px;
}
.platecol p {
  font-size: 18px;
  margin: 20px 0;
  height: 130px;
}


.platecol a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.platecol a:hover {
 border-bottom: 2px solid  #2291d0;
}
.news-section.two {
  margin-top: 0;
  background: #f5f5f542;
  padding: 100px 0;
}
.footertop .title {
  font-size: 48px;
}

/* =================testimonial css============================== */

.testi {
  display: flex;
  align-items: center;
  gap: 50px;
}

.testi img {
  width: 80px !important;
  height: 80px;
  border-radius: 50px;
}
.testi {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 20px 0;
}
.testimonial-section {
  padding: 100px 0;
  background: #2291d1;
  color: #fff;
}
.item-col p {
  font-size: 20px;
}
.item-col {
  padding: 0 100px;
}
.item-col.one {
  border-right: 1px solid #fff;
}
.testicontent h6 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.testicontent span {
  color: #b5c3ff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
}
.slider-activation .owl-prev {
  position: absolute;
  left: 0;
  font-size: 40px !important;
  top: 50%;
}
 .owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent!important;
}
.slider-activation .owl-next {
  position: absolute;
  right: 0;
  font-size: 40px !important;
  top: 50%;
}
.slider-activation .owl-dot span {
  width: 100px !important;
  display: block;
  height: 2px !important;
}



/* =======================
footer css================ */

.footertop {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 0 50px 50px 50px;
}
.footertop .btn {
  display: inline-block;
}
.footertop p {
  font-size: 18px;
  margin: 20px 0;
}

.row.footer-row {
  margin-top: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.f-col ul li a {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

.f-col ul li a:hover{
  border-bottom: 1px solid #fff;
}
footer {
  background-position: center -195px !important;
  z-index: 2;
  position: relative;
  background: #2a2a2a;
    background-position-x: 0%;
    background-position-y: 0%;
    background-image: none;
  background-position-x: 0%;
  background-position-y: 0%;
  background-image: none;
  background-image: none;
  padding: 100px 0;
}




/* contact us css */
.get-in-touch {
  padding: 80px 0;
}
.get-in-touch li,
.get-in-touch a,
.get-in-touch label,
.get-in-touch h5,
.get-in-touch p{
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cleft .hero-heading {
  color: #000;
}
.c-widgt h5 {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
  color: #242424;
  margin-bottom: 5px;
}

.contactform textarea {
  min-height: 100px;
  border: 1px solid #999!important;
}
.contactform .form-control:focus,
.contactform textarea:focus{
  box-shadow: none!important;
  border-bottom: 1px solid #2291d0!important;
}

.contactform textarea:focus{
  box-shadow: none!important;
  border: 1px solid #2291d0!important;
}
.cleft .hero-heading {
  color: #000;
  font-size: 48px;
  margin-bottom: 50px;
}
.map {
  color: #2291d1!important;
  font-weight: 600;
  margin-top: 10px;
  display: block;
}
.c-widgt a {
  color: #000;
}
.c-widgt a:hover{
  color: #000;
  color: #2291d1!important;
}
.contactform .form-group {
  margin-bottom: 15px;
}
.contactform .btn {
  background: #2291d1;
  color: #fff;
}
.contactform .btn:hover {
  background: transparent;
  color: #2291d1;
  border: 1px solid #2291d1;
}
.contactform .form-control {
  height: 45px;
  border: none;
  border-bottom: 1px solid #999!important;
  border-radius: 0;
}
.contactform label{
  display: block;
  margin-bottom: 10px;
}

.navbar.subnav {
  text-align: center;
  padding: 25px;
  border-bottom: 1px solid #2293d1;
  width: 100%;
}
.d-content .btn.hireme-btn2 {
  background: #2291d1;
  color: #fff;
  letter-spacing: 1px;
  display: inline-block;
}
.d-content .btn.hireme-btn2:hover {
  background: transparent;
  color: #2291d1;
  border: 1px solid #2291d1;
}
.navbar.subnav ul li a::before {
  top: 80px;
}
.sticky .navbar.subnav {
  top: 80px;
  position: fixed;
  width: 100%;
  background: #fff;
  left: 0;
  z-index: 2;
}

.section-hero.section.two .hero-para {
  border-bottom: none;
}


.image.width img {
  width: 100%;
}
.d-content.two {
  margin: 30px 150px 30px 0;
}


/* =================
about css============= */
.abut-header {
  padding: 90px 0;
  color: #fff;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: end;
  position: relative;
}
.abut-header::before {
  background: rgba(0,0,0, .5);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.abut-header::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear,left top,right top,from(rgba(42,42,42,.5)),color-stop(50%,transparent),to(transparent));
  background: -o-linear-gradient(left,rgba(42,42,42,.5),transparent 50%,transparent);
  background: linear-gradient(90deg,rgba(42,42,42,.5),transparent 50%,transparent);
  content: "";
}
.abut-header .container{
  position: relative;
}
.abut-header p{
  font-size: 18px;
}
.abttext p {
  font-size: 18px;
}
.teambtn .btn {
  background: #2291d1;
  color: #fff;
}
.teambtn {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.teambtn .btn:hover {
  background: transparent;
  color: #2291d1;
  border: 1px solid #2291d1;
}
.abt_section {
  padding: 50px 0 0 0;
}
.valu-box p {
  margin: 10px 0;
}
.valu-box {
  margin: 20px 0;
}
.valu-box span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.team-section .title {
  text-align: center;
  margin-bottom: 50px;
}
.team-col {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 0;
}
.teamimg img {
  width: 100%;
  border-radius: 50%;
}
.teamimg {
  width:150px;
  height:150px;
}
.team-section {
  padding: 50px 0 60px 0;
}
.team-col {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 0;
}
.teamtxt h2 {
  color: #4f4f4f;
  font-family: Canela,Georgia,Times New Roman,serif;
  font-size: 30px;
}
.teamtxt p {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #979797;
}
.growing-teamcontent .title {
  text-align: center;
  margin-bottom: 50px;
}
.team-content h2 {
  color: #000;
  font-family: Canela,Georgia,Times New Roman,serif;
  font-size: 26px;
}
.team-content p {
  font-size: 18px;
  margin: 10px 0;
}
.team-content {
  margin: 20px;
}


/* ==========work page css===================== */

.work-section {
  padding: 80px 0;
}
.heading p {
  font-size: 18px;
}
.heading {
  text-align: center;
  margin-bottom: 40px;
}
.tab.mission-list-tab ul {
  display: flex;
  align-items: center;
}
.tab.mission-list-tab ul li {
  padding: 0 15px;
}
.tab.mission-list-tab ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #2291d1;
}
.tab.mission-list-tab ul li a {
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 20px 0;
  display: block;
}
.tab.mission-list-tab ul li.current a {
  color: #2291d1;
  border-bottom: 4px solid #2291d1;
}
.tab.mission-list-tab ul li a:hover{
  border-bottom: 4px solid #979797;
  transition: all .3s ease;
}

.workcol a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 320px;
  color: #fff;
  font-size: 18px;
  padding: 30px 15px;
  -webkit-transition: background .2s ease-out;
  -o-transition: background ease-out .2s;
  transition: background .2s ease-out;
  background: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.8)),color-stop(50%,rgba(0,0,0,.7)),to(rgba(0,0,0,.5)));
  background: -o-linear-gradient(top,rgba(0,0,0,.8) 0,rgba(0,0,0,.7) 50%,rgba(0,0,0,.5) 100%);
  background: linear-gradient(180deg,rgba(0,0,0,.8),rgba(0,0,0,.7) 50%,rgba(0,0,0,.5));
}
.workimg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.isotope-tag {
  background: hsla(0,0%,100%,.9);
  color: #2a2a2a;
  padding: 4px 10px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all .2s ease-out;
  -o-transition: all ease-out .2s;
  transition: all .2s ease-out;
  position: relative;
  z-index: 10;
  font-size: 16px;
  margin-bottom: 10px;
}
.workimg img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.discription {
  inset-inline: 20px;
  top: 75px;
  bottom: 30px;
  position: absolute;
  color: #2a2a2a;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all .2s ease-out;
  -o-transition: all ease-out .2s;
  transition: all .2s ease-out;
}
.workcol:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  -o-transition: transform ease-out .2s;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out,-webkit-transform .2s ease-out;
  -webkit-box-shadow: 0 6px 8px rgba(25,34,74,.06),0 8px 20px rgba(25,34,74,.12);
  box-shadow: 0 6px 8px rgba(25,34,74,.06),0 8px 20px rgba(25,34,74,.12);
  color: #2a2a2a;
}
.workcol:hover a {
  background: #fff;
  position: relative;
}
.workcol:hover .discription {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.workcol:hover .isotope-tag {
  background: #2291d1;
  color: #fff;
}
.workcol:hover .discription span {
  color: #2291d1;
}
.workcol .discription p {
  margin-bottom: 80px;
}
.workcol {
  margin: 15px 0;
}
.abut-header.section-hero .title {
  font-size: 44px;
}
.blogimg img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.blog-col a {
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-col a:hover{
  color: #2291d0!important;
}
.blog-col h4 {
  text-transform: capitalize;
  font-size: 18px;
}
.blogimg {
  margin-bottom: 20px;
}
.blog-col {
  margin: 15px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.pagination a {
  border: none;
  font-size: 20px;
  color: #000;
  margin: 0 10px;
}
.pagination .page-item.active a {
  background: none !important;
  color: #2291d1;
  border-bottom: 1px solid #2291d1;
  border-radius: 0;
}

.blog-section {
  padding: 80px 0;
}

/* blog detail .html css */
.blog-page-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.imp-text {
	font-style: italic;
	font-weight: 600;
	margin-left: 50px;
	text-align: justify;
	position: relative;
  }
  
  .imp-text::before {
	position: absolute;
	content: '';
	top: 0;
	left: -30px;
	width: 10px;
	height: 100%;
	background: #2291d1;
  }
  .blog-text.blog-page-text p {
	text-align: justify;
  }
  .you-like{
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 10px 0;
    font-size: 16px;
  }
  .you-like h4 {
    font-size: 18px;
    font-weight: 600;
  }
  .rel-pro-section.bgdetail h6 a:hover {
	color:#2291d1;
  }
  .leav-replay h2 {
    font-weight: 600;
  }
  blockquote {
    background-color: #f6f6f6;
    border-left: 2px solid #2291d1;
    color: #666666;
    font-size: 18px;
    line-height: 26px;
    margin: 23px 0;
    padding: 14px 50px;
  }
  .blog-page-section p {
    font-size: 16px;
  }
  .social-icons {
	list-style-type: none;
	font-size: 15px;
	display: flex;
	justify-content: right;
	padding-right: 0;
  }
  .social-icons li {
	padding: 0 10px;
  }
  .contact-form .input-group .form-control {
	width: 100%;
  }
  .contact-form .input-group .form-control:focus{
	  box-shadow: none!important;
	  border: 1px solid #4DAA49!important;
  }
  .contact-form .input-group textarea:focus{
	   box-shadow: none!important;
	  border: 1px solid #4DAA49!important;
  }
  .contact-form .input-group label{
	  font-size: 14px;
	  font-weight: 700;
  }
  .contact-form .input-group label span {
	color: #2291D1;
	font-size: 20px;
	position: relative;

  }
  .contact-section {
	margin: 50px 0;
  }
  .submit-now {
	padding: 10px;
	background: #2291D1;
	border: 1px solid #2291D1;
	color: #fff;
	border-radius: 5px;
  }
  .submit-now:hover{
  background: #000;
  border: 1px solid #000;
  }
  .sidebar-widget {
	padding: 20px 20px 30px 25px;
	margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }
  .sidebar-widget ul {
	list-style-type: none;
  }
  .sidebar-widget ul li a{
	  padding: 10px ;
	  color: #333!important;
	  display: block;
  }
  .sidebar-widget ul li a:hover {
	color: #fff !important;
	background: #4DAA49;
  }
.rel-pro-section h6 a {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}
.rel-pro-section span {
  text-align: left;
  padding: 0;
  font-size: 16px;
}
.sidebar-widget h4 {
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1px;
  color: #333;
  font-weight: 700;
}
.rel-pro-section .row {
  margin-top: 20px;
  border-bottom: 1px solid #eee;
  padding: 0 0 10px 0;
}
.main-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: .8rem 2.8rem;
  border-radius: 5rem;
    border-top-left-radius: 5rem;
  border-top-left-radius: 0;
  cursor: pointer;
  background: none;
  color: #2291D1 !important;
  z-index: 0;
  position: relative;
  border: 3px solid #2291D1;
  transition: all .5s linear;
  font-size: 16px;
}
.blog-page-section {
  padding: 50px 0;
}
.blog-page-section .date {
  border: 2px solid #2291D1;
  width: 80px;
  text-align: center;
  height: 80px;
  color: #2291D1;
  font-size: 32px;
  line-height: 26px;
  padding-top: 12px;
}
.main-btn:hover {
  background:  #2291D1;
  color: #fff !important;
}
.social-icon {
  display: flex;
}
.social-icon li {
  margin: 0 10px;
}
.social-icon li a {
  background: #fff !important;
  border-radius: 50%;
  line-height: 40px;
  height: 35px;
  width: 35px;
  color: rgb(10, 11, 14) !important;
  display: block;
  
}
.meta-discription ul {
  display: flex;
  margin-bottom: 5px;
  padding-left: 0;
  list-style-type: none;
}
.meta-discription ul li a {
  padding: 10px;
    padding-left: 10px;
  color: #333 !important;
  font-size: 16px;
  
}
.meta-discription ul li a i {
  color:#2291D1
}
.blog-page-section .date span {
  display: block;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}
.meta-discription h2 a {
  color: #333 !important;
  font-size: 28px;
  font-weight: 700;
}
.social-icon li a:hover {
  background: #2291D1 !important;
  transform: translateY(-3px);
  color: #fff !important;
}
.rel-pro-section .product-img img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  min-width: 70px;
}


/* work detail css */
.abut-header.work.section-hero::before {
  display: none;
}
.abut-header.work.section-hero::after {
  display: none;
}
.abut-header.work.section-hero img {
  width: 100%;
}
.abut-header.work.section-hero {
  background: transparent;
  width: 100%;
  position: relative;
}
.work-detail {
  padding: 80px 0;
}
.work-detail .date {
  font-size: 18px;
  color: #999;
}
.work-detail  .hero-heading {
  color: #000;
  font-size: 6rem;
  margin-bottom: 40px;
}
.work-detail .team-col {
  margin-bottom: 30px;
}
.work-detail p{
  font-size: 18px;
}
.section-hero.section.sr {
  background-color: #f4f4f4;
  padding: 100px 0;
}
.section-hero.section.sr .hero-heading {
  color: #000;
  font-size: 5rem;
}
.section-hero.section.sr p {
  color: #000;
}
.imgdiv {
  position: absolute;
  right: 0;
  top: 300px;
}
.section-hero.section.sr {
  background-color: #f4f4f4;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.imgdiv {
  position: absolute;
  right: -98px;
  top: 338px;
  opacity: .5;
}
.section-hero.section.sr .btn {
  background: #2291D1;
  color: #fff;
}

.section-hero.section.sr .btn:hover{
  background-color: transparent;
  color: #2291D1;
  border: 1px solid #2291D1;
}
.sdcontent {
  padding: 50px 0;
}
.sdleftcnt h5 {
  font-weight: 600;
  font-size: 18px;
  margin: 15px 0;
}
.sdleftcnt p {
  font-size: 17px;
}
.srimg {
  text-align: center;
}
.srimg img {
  width: 80%;
  margin: 0 auto;
}
.brand_section .brand img {
  width: 100%;
}
.brand_section {
  display: flex;
  width: 1140px;
  margin: 0 auto;
}
.brand_section .brand {
  padding: 30px;
}


/* carrer page css */
.career-section {
  padding: 100px 0;
}
.heading_section {
  text-align: center;
  margin-bottom: 50px;
}
.heading_section h3 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
}
.heading_section p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}
.job-box {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.jobleft a {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.loc {
  color: rgb(78, 97, 106);
  font-size: 16px;
}
.loc span {
  margin-right: 15px;
}
.viewbtn {
  padding: 7px 13px;
  display: inline-block;
  background: #2291d1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.viewbtn:hover{
  color: #fff!important;
}

.job-detail {
  padding: 50px 0;
}
.jopdleft {
  font-size: 16px;
  margin-bottom: 30px;
}
.jopdleft h5 {
  font-size: 20px;
  font-weight: 600;
}
.jopdleft ul {
  padding-left: 0;
}
.jopdleft ul li {
  list-style: disc;
  margin-left: 25px;
}
.jopdleft strong {
  margin: 8px 0;
  display: block;
}
.jopdleft {
  font-size: 16px;
  margin-bottom: 30px;
}
.vender-slider .owl-prev {
  position: absolute;
  left: -30px;
  top: 30%;
  font-size: 40px !important;
  color: #2291d1 !important;
  opacity: 0;
}
.vender-slider .owl-next {
  position: absolute;
  right: -30px;
  top: 30%;
  font-size: 40px !important;
  color: #2291d1 !important;
  opacity: 0;
}
.vender-slider:hover .owl-next{
  opacity: 1;
}
.vender-slider:hover .owl-prev{
  opacity: 1;
}
.vender-slider .owl-dots {
  display: none!important;
}
.jobright a {
  background: #2291d1;
  color: #fff;
  display: block;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
}


/* venders pages css */
.venders {
  padding: 50px 0;
}

.vnder-logo {
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 20px;
  margin: 20px 5px !important;
}
.vnder-logo img:hover{
  filter: grayscale(0%);
}
.vnder-logo img {
  width: 200px !important;
  height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  margin: 0 auto;
}
.venders .heading h2 {
  font-size: 40px;
  font-family: Canela,Georgia,Times New Roman,serif;
}