@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


:root {
  --primary:#e39b46;
  --secondary:#2666ae;
  --white:#fff;
  --black:#000;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background:var(--primary); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}

body {
    margin: 0;
    padding: 0 !important;
   font-family: "K2D", sans-serif;
    scroll-behavior: smooth;
    overflow: inherit !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
    border: solid 1px #dddddd94;
    color: #444;
    font-size: 15px;
    line-height: normal;
    margin: 0 0 12px;
    padding: 12px 20px;
    width: 100%;
    outline: 0;
    font-family: "K2D", sans-serif;
    background: var(--white);
    border-radius: 4px;
}
input[type="submit"] {
    color: var(--white);
    background: var(--primary);
    text-transform: uppercase;
    border: none;
    padding: 11px 25px;
    font-size: 14px;
    border: 0;
    letter-spacing: 0.8px;
    cursor: pointer;
    outline: none;
    font-weight: 600;
    border-radius: 4px;
    font-family: "K2D", sans-serif;
    width: 100%;
}
input[type="submit"]:hover {
  background: var(--secondary);
  color: var(--white);
  transition: 0.8s;
}
textarea {
    height: 100px;
    margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 15px 0;
font-family: "K2D", sans-serif;
    color: var(--secondary);
    font-weight: 600;
    text-transform: inherit;
    line-height: normal;
}
h1 {
  font-size:28px
}
h2 {
  font-size:24px
}
h3 {
  font-size: 22px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size:18px
}
h6 {
  font-size:16px
}
p {
    padding: 0;
    margin: 0 0 10px 0;
    color: #444;
    font-weight: 400;
    font-family: "K2D", sans-serif;
    font-size: 16px;
    line-height: 26px;
}
ul, li, a{
  list-style-type: none;
font-family: "K2D", sans-serif;
  color: #444;
    font-size: 15px;
    line-height: 24px;
}
a:hover {
  transition:0.8s;
  text-decoration:none;
}
.heading {
    margin-bottom: 40px;
    font-size: 35px;
    color: #0e1422;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}
.heading:before {
    content: '';
    position: absolute;
    border-top: solid 3px var(--secondary);
    width: 60px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.subheading {
    margin: 0px auto 10px;
    font-size: 17px;
    color: var(--secondary);
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.zoomeffect {
    overflow: hidden;
    position: relative;
}
.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}
.zoomeffect:hover img {
  transform: scale(1.1);
}

/* Loader */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.pageloader .load {
    color: var(--white);
    letter-spacing: 6px;
    margin-top: 15px;
}
.overlay .overlayDoor:before, .overlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #111;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
  left: 0;
}
.overlay .overlayDoor:after {
  right: 0;
}
.overlay.loaded .overlayDoor:before {
  left: -50%;
}
.overlay.loaded .overlayDoor:after {
  right: -50%;
}
.overlay.loaded .overlayContent {
  opacity: 0;
  margin-top: -15px;
}
.overlay .overlayContent {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
.pageloader .load img {
    width: 180px;
}
.overlay .overlayContent .skip {
  display: block;
  width: 130px;
  text-align: center;
  margin: 50px auto 0;
  cursor: pointer;
  color: #fff;
  font-family: "Nunito";
  font-weight: 700;
  padding: 12px 0;
  border: 2px solid #fff;
  border-radius: 3px;
  transition: 0.2s ease;
}
.overlay .overlayContent .skip:hover {
  background: #ddd;
  color: #444;
  border-color: #ddd;
}

.loader {
  width: 128px;
  height: 128px;
  border: 3px solid #fff;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  position: relative;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 64px;
  height: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: spinInner 1s linear infinite;
          animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}



/* TOPBAR SECTION CSS */
.topbar {
    background: var(--primary);
    padding: 5px 0;
}
.topbar .row {
	align-items: center;
}
.top-contact {
    display: flex;
    column-gap: 15px;
}
.top-contact p {
margin:0;
}
.top-contact i {
    margin-right: 8px;
}
.topbar p:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.smoicons ul li a {
    border: solid 1px #ddd;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.topbar p, .topbar p a, .smoicons ul li a {
    color: var(--white);
}
.smoicons ul {
    display: flex;
    align-items: center;
    justify-content: end;
}
.smoicons li {
    border-right: 1px solid #ffffff2e;
    padding: 0 10px;
}
.smoicons li i {
    font-size: 13px;
}
.smoicons li:last-child {
    border: none;
    padding-right: 0;
}
.smoicons ul li, .smoicons ul li a {
    color: var(--white);
    font-size: 18px;
}


/* HEADER SECTION CSS */

.mainmenu.fixed {
    position: fixed;
    top: 0;
    background: var(--secondary);
    z-index: 999;
    width: 100%;
    padding: 3px 0;
}
header img {
    width: 100%;
}
header .row {align-items: center;}
header .col-sm-8 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.mainmenu {
    background: var(--secondary);
}
.headercnt {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.headercnt h4 {
    font-size: 17px;
    margin: 0;
}
.headercnt h4 span {
    display: block;
}
.headercnt i {
    font-size: 35px;
    color: var(--primary);
}

/* Menubar */


.mainmenu .btn-primary {
    border-radius: 50%;
    padding: 0;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* SLIDER SECTION CSS */


.mainslider figure{
	margin:0;
}
.mainslider figure img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    filter: brightness(0.7);
}
.mainslider .carousel-caption {
    top: 50%;
    left: 0;
    right: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: left;
    bottom: inherit;
}
.mainslider .carousel-content {
    text-align: center;
    padding: 0 10%;
}
.mainslider .carousel-caption h1, .mainslider .carousel-caption p {
	color:var(--white);
}
.mainslider .carousel-caption h1 {
    letter-spacing: .6px;
    text-transform: capitalize;
    opacity: 0;
    animation: lts .5s ease-in-out .3s forwards;
    margin: 20px 0;
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}
@keyframes lts{
0%{
	transform:translateX(-150px);
}
100%{
	opacity:1;
	transform:translateX(0px);
}
}
.mainslider .carousel-caption span {
    display: block;
    color: var(--white);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 3px;
    font-weight: 500;
  margin-bottom: 25px;
}

.mainslider .carousel-caption p {
    font-size: 16px;
    margin: 20px 0 22px;
    line-height: 29px;
    opacity: 0;
    animation: lts .5s ease-in-out .6s forwards;
}
 .mainslider .carousel-caption p {
    padding: 0 200px;
}
.mainslider .carousel-content .btn {
    margin-right: 10px;
    opacity: 0;
    animation: lts .5s ease-in-out 1.2s forwards;
    padding: 11px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 14px;
}
.mainslider .carousel-control {
	position: absolute;
	bottom: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	font-size: 18px;
	height: 45px;
	background: var(--blackcolor) !important;
	color: var(--whitecolor);
 transition: opacity .15s ease;
	border-radius: 50%;
}
.mainslider .carousel-control.right {
    right: 105px;
    left: auto;
}
.mainslider .left.carousel-control {
	left: 84% !important;
}
.mainslider button i {
    background: rgba(0,0,0,.5);
    font-size: 27px;
    width: 35px;
    height: 55px;
    line-height: 55px;
}

/* Why Choose Us */

.products {
    background: url(../images/productsbg.jpg) center;
    padding: 55px 0;
    background-attachment: fixed;
}
.products-item {
    border: solid 1px #0d88c945;
    padding: 25px;
    border-radius: 6px;
    height: 100%;
    text-align: center;
    background: var(--white);
    transition: all ease-in-out .5s;
}
.products-item:hover {
    transform: translateY(-5px);
}
.serviceptop {
    text-align: center;
    margin-bottom: 20px;
}
.products-item:hover figure:before, .services-item:hover figure:before{
    animation: shine 1s;
	z-index: 1;

}
@keyframes shine{
	100% {
    left: 125%;
}
}
.products-item figure {
    border: solid 13px #0c82c0;
    width: 130px;
    height: 130px;
    margin: 0 auto !important;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    padding: 20px;
    background: #0d86c71a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-item img {
    width: 63px;
}
.products-item h3 {
    margin: 20px 0 10px;
    font-size: 25px;
}

/* Resources */

.resources {
	padding:40px 0 45px;
    overflow: hidden;
}
.resources .resources-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px !important;
    margin: 6px 0;
}
.resources figure{
    height: 100%;
}
.resources figure img {
    transition: all .3s ease-in-out;
    height: 100%;
    object-fit: cover;
}
.resources .resources-item:hover img {
    filter: grayscale(1);
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}
.resources .resources-item:hover .resources-caption:after {
    opacity: 1;
    transition: all .3s ease-out;
}
.resources .resources-caption {
    background: var(--white);
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding: 10px 15px 15px;
    overflow: hidden;
    position: absolute;
    z-index: 1111;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.resources-caption::after {
    position: absolute;
    height: 35px;
    width: 35px;
    background-color: rgb(18 153 212);
    content: '';
    border-radius: 0 30px 30px 0;
    left: -23px;
    bottom: -5px;
    opacity: 0;
    transition: all .3s ease-in-out;
}
.resources .resources-item::after {
    content: "";
    position: absolute;
    background-image: url(../images/shape.png);
    height: 100%;
    width: 100%;
    top: -63px;
    right: -100%;
    z-index: 0;
    background-repeat: no-repeat;
    transition: 0.3s;
}
.resources .resources-item:hover::after {
    right: -50%;
}
.resources h4 {
    font-size: 25px;
}
.resources p {
    font-size: 17px;
    font-weight: 500;
}

/* ABOUT US */

.homeabout {
    padding: 35px 0;
}
.homeabout figure {
    margin: 0;
    position: relative;
}
.homeabout img {
    width: 100%;
    height: 300px;
    animation: border-transform 10s linear infinite alternate forwards;
    outline: solid 2px var(--primary);
    outline-offset: 0;
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}
.about-content span {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    padding-bottom: 15px;
    display: block;
}
.about-content h2 {
    font-size: 38px;
    margin-bottom: 22px;
    line-height: 35px;
    color: #03020a;
    font-weight: 700;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.abouttop p {
    text-align: justify;
}
.abouttop figure img {
    width: 100%;
    height: 425px;
    object-fit: cover;
    border-radius: 6px;
}

/* Our Clients */

.ourclients {
    padding: 60px 0 70px;
}
.ourclients .row {
    row-gap: 25px;
}
.ourclients-item {
    border: dotted 1px var(--secondary);
    padding: 15px;
    text-align: center;
    height: 100%;
    transition: all ease-in-out .5s;
}
.ourclients-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    border-radius: 20px;
}
.ourclients-item img {
    width: 90px;
    border-radius: 50%;
    border: dotted 2px var(--primary);
}
.ourclients-item h3 {
    font-size: 19px;
    margin: 0;
}
.ourclients-item h3 span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    padding-top: 10px;
    color: #555;
}

/* Gallery */

.gallery{
	padding:60px 0;
}
.gallerypage h3 {
    font-size: 32px;
    margin: 30px 0 20px;
}
.envira-lazy {
    position: relative;
    overflow: hidden;
	 border-radius: 6px !important;
	 outline: solid 1px var(--secondary) !important;
    outline-offset: 5px !important;
}
.envira-lazy:before {
    transform: scale(0);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5fbff2e;
    transition: .5s;
    z-index: 1;
}
.envira-lazy:hover:before {
    transform: scale(1.5);
}

/* Gallery */

.gallery-item figure img {height: 280px;width: 100% !important;border-radius: 6px;transition: all ease-in-out .5s;}
.gallery-item figure {
    overflow: hidden;
	border-radius: 6px;
}
.gallery-item:hover figure img {
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(1);
}

/* About Us */

.about {
    background: #f9f9f9;
    padding: 30px 0;
}
.about .row {
    border: solid 1px #ddd;
    border-radius: 6px;
    background: var(--white);
    margin: 15px  0;
    padding: 15px !important;
}
.about .row:nth-child(even) {
    flex-direction: row-reverse;
}
.profile .products-item figure {
    border: none;!important
	background:none;!important
}

/* Contact Us*/

.contact-form {
    background: url(../images/cnt-form.jpg);
    padding: 40px;
}
.contact-info {
    background: url(../images/contact-bg.jpg);
    padding: 60px;
}
.contact-info small {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 600;
    background: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
}
.contact-info h2 {
    color: var(--white);
    font-size: 47px;
    letter-spacing: 1px;
    margin: 10px 0 10px;
    font-weight: 600;
}
.contact-info h2 span {
    color: var(--primary);
}
.contact-info p {
    color: var(--white);
    font-size: 16px;
    font-weight: 200;
}
.contact-list {
    margin-top: 30px;
}
.contact-list li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin: 10px 0;
    border-radius: 6px;
    background: var(--white);
    padding: 15px;
}
.contact-list li i {
    background: var(--secondary);
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 18px;
    border-radius: 3px;
}
.contactlist-info span {
    display: block;
    color: var(--secondary);
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: 600;
}
.contact-list li a {
    font-size: 20px;
}




/* Footer */

footer {
    background: linear-gradient(#2666ae, #0000), url(../images/footerbg.png);
}
.footerabout img {
    width: 120px;
}
footer .col-lg-3 {
    border-right: 1px solid #ffffff14;
    padding: 35px 30px;
}
span.wpcf7-spinner {
    position: absolute;
    left: 0;
}
footer .col-lg-3:last-child {
    border: none;
}
footer ul.menu li {
    position: relative;
    padding-left: 20px;
}
footer ul.menu li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 10px;
}
footer ul li.menu-item a {
    margin-bottom: 8px;
    display: block;
}
footer ul li:last-child a {
    margin-bottom: 0;
}
footer ul li.menu-item a:hover {
  color: var(--white);
}
.footersmo li i {
    color: #4d4a4f;
    font-size: 18px;
}
footer h4 {
    margin-bottom: 18px;
    letter-spacing: .5px;
    font-size: 21px;
    color: var(--white);
    padding-bottom: 15px;
    background: url(../images/under-title.png) no-repeat bottom left;
}
footer a, footer p, .footerabout a {
    color: #eee;
}
footer a:hover {
    color: var(--primary) !important;
}
.details-content {
    position: sticky;
    top: 0;
}
.footer-details a {
    text-decoration: none;
    font-size: 15px;
}
footer ul.footer-details li:last-child {
    margin-bottom: 0;
}
footer ul.socialicon {
  display: flex;
    column-gap: 6px;
	justify-content: flex-end;
}
footer ul.socialicon li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #212222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin: 0;
}
footer .readbtn {
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 15px;
    display: block;
}
footer ul.footer-details li {
    position: relative;
    padding-left: 20px;
    color: #eee;
	 margin-bottom: 10px;
}
footer ul.footer-details li i {
    color: var(--primary);
    padding-right: 5px;
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 7px;
}
footer form {
    position: relative;
}
footer form input {
    border-color: #ffffff26 !important;
    padding: 7px 15px !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}
footer input[type="submit"] {
    width: 100%;
    margin-bottom: 0;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid #ffffff38;
}
.copyright .col-sm-4 {
    justify-content: flex-end;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.copyright .row {
  align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
}
.copyright p a {
    color: var(--primary);
}
.copyright ul {
    display: flex;
    justify-content: center;
}
.copyright ul li {
    border-right: solid 1px #dddddd40;
    padding: 0 15px;
}
.copyright ul li:last-child {
    border-right: none;
    padding-right: 0;
}
.copyright img {
    width: 280px;
}




#GoToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 33px;
    border-radius: 50%;
    z-index: 99999999;
    padding: 0;
    border: solid 2px var(--primary);
    background: var(--white);
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
    font-size: 17px;
    color: var(--primary);
    text-decoration: none;
    padding-top: 10px;
    box-shadow: 3px 11px 12px #0000009c;
}
#GoToTop .fa {
	display: block;
	padding-bottom: 3px;
}
#GoToTop:hover {
	background: var(--primary);
	color: var(--white);
}
#GoToTop.show {
	display:block
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 99999999;
    padding-top: 8px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 6px 9px rgb(0 0 0 / 5%), 0 4px 5px rgb(0 0 0 / 5%);
}
#whatsappbtn:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 50%;
	background: #4fcc5d;
	box-shadow: 0 0 10px #4fcc5d;
	animation: whtsbtn 2s linear infinite forwards;
}
#whatsappbtn img{
width: 110px;    
}
 @keyframes whtsbtn {
 from {
 transform:scale(1.0);
 opacity: 1;
}
to {
	transform:scale(1.5);
	opacity: 0;
}
}
#whatsappbtn img {
	width: 30px;
	margin-top: 4px;
}

/* Partners */

.partners {
    padding: 45px 0 60px;
    background: #f9f9f9;
}
.clients.partners .row {
    row-gap: 25px;
}
.partners-item {
    border: double 3px var(--secondary);
    padding: 15px;
    border-radius: 6px;
    background: var(--white);
}
.partners-item img {
    width: 100% !important;
    aspect-ratio: 2/1;
    object-fit: contain;
}

/* BLOG SECTION */

.blog {
    padding: 45px 0 60px;
}
.blog-item {
    border: solid 1px #EDEFF3;
    border-radius: 20px;
    transition: 0.5s;
    padding: 20px;
    height: 100%;
    background: var(--white);
}
.blog-item figure {
    height: 300px;
    margin: 0;
    border-radius: 20px;
}
.blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.blog ul.blog_top_cnt {
    column-gap: 15px;
    margin: 20px 0 10px;
    padding-bottom: 15px;
    border-bottom: solid 1px #eee;
}
.blog-content h3 {
    margin-bottom: 5px;
}
.blog .blog_top_cnt li, .blog .blog_top_cnt li a {
    line-height: 20px;
}
.blog .blog_top_cnt li i {
    margin-right: 8px;
    color: var(--secondary);
    font-size: 12px;
}
.blog h3 a {
    font-size: 23px;
    text-transform: capitalize;
    line-height: 32px;
}
.blog-content .readbtn {
    color: var(--primary);
    font-size: 17px;
}
.blog-content .readbtn i {
    transform: rotate(-45deg);
    transition: all ease-in-out .5s;
    font-size: 14px;
}
.blog-content .readbtn:hover i {
    transform: inherit;
}

/* why choose section  */
.whychoose{
	padding:60px 0;
}
.whychoose .row{
	row-gap:22px;
}
.whychoose-item {
    padding: 10px;
    border: 1px solid #21176030;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    column-gap: 20px;
}
.whychoose-item figure  img{
    height: 100%;
    width: 245px;
	object-fit:cover;
	border-radius:10px;
}
.whychoose-item h3 {
    font-size: 22px;
    font-size: 26px;
    font-weight: 700;
}



/* PROFILE SECTION CSS */

.profile {
    padding: 40px 0 60px;
}
.profile-item {
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.07);
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    background: var(--white);
}
.profile-item img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 3px solid #0382c721;
}
.profile-item h3 {
    margin: 12px 0 5px;
}
.profile-item ul {
    column-gap: 5px;
}
.profile-item li a {
    background: var(--primary);
    height: 35px;
    width: 35px;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 50px;
}



/* Reviews */

.testimonial {
    background: linear-gradient(var(--primary), #2666ae70), url(../images/reviewbg.webp);
    background-position: center;
    background-size: cover;
    padding: 40px 0 60px;
    background-attachment: fixed;
}
.testimonial .heading:before {
    border-color: var(--primary);
}
.testimonial .row{
	row-gap:25px;
}
.testimonial-item {
    background: #ffffff0f;
    border-radius: 20px;
    padding: 25px;
    border: solid 1px #ddddddbf;
    border-bottom: solid 5px var(--primary);
}
.testimonial-cnt h3 {
    margin: 25px 0 0;
    background: #ffffff21;
    font-size: 19px;
    padding: 10px;
    border-radius: 50px;
    color: var(--white);
    outline: solid 1px #ffffff1a;
    outline-offset: 3px;
}
.testimonial-cnt p {
    color: var(--white);
}
.testimonial figure {
    outline: 2px dotted var(--secondary);
    border-radius: 50%;
    outline-offset: 5px;
    overflow: hidden;
    height: 80px;
    width: 80px;
    margin: 0 auto 25px;
}
.testimonial figure img{
	width:100%;
	height:100%;
	object-fit:cover;
}


/* Breadcrumbs */

.breadcrumb {
    padding: 25px 0 35px;
    background: linear-gradient(#0000005e, #000000d1), url(../images/breadcrumb.jpg) no-repeat center center / cover;
}
.breadcrumb .row {
  align-items: center;
  display: flex;
}
.breadcrumb h1 {
    color: var(--white);
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: 50px;
    font-size: 27px;
    padding: 5px 30px;
    letter-spacing: 1px;
    border-bottom: solid 3px var(--primary);
}
.breadcrumb p {
    text-align: center;
    margin: 0;
}
.breadcrumb h1 p {
    text-align: left;
}
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    color: var(--white);
    font-weight: 500;
}
.breadcrumb p a{
  padding-right: 18px;
  margin-right: 5px;
  position: relative;
}
.breadcrumb h1 span {
    font-size: 25px;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--white);
    text-transform: uppercase;
    line-height: normal;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}
.breadcrumb h1 p{
  float:left;
}
.breadcrumb h1 span a {
  display: none;
}

.breadcrumb a:after {
    position: absolute;
    content: '\f101' !important;
    font-size: 10px !important;
    font-weight: 600;
    font-family: 'Font Awesome 5 Free' !important;
    color: var(--white);
    right: 0;
}
.secondary-container {
padding: 40px 0;
}

.dtlscnt {
    padding: 25px;
    background: #f9f9f9;
    border: dotted 2px var(--primary);
    margin-top: 25px;
}
.dtlscnt ul li {
    line-height: 25px;
}
.dtlscnt ul li {
    margin: 10px 0;
}
.dtlscnt ul li:last-child {margin-bottom: 0;}
.srvccnt {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    background: #eee;
    padding: 10px;
    column-gap: 15px;
    border: dotted 2px var(--primary);
}

/* Contact Us */

.contact-location {
    height: 100%;
    margin-bottom: 25px;
}
.contact-location .row {
    row-gap: 15px;
}
.contactus .contact-details-cnt {
    text-align: center;
    padding: 18px;
    transition: all ease-in-out .5s;
    margin-bottom: 15px;
    border-radius: 0 0 6px 6px;
    height: 100%;
    background: #0382c70f;
    border-top: none;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    border: double 4px var(--secondary);
}
.contactus-form p {
    margin: 0;
}
.contact-details-cnt strong {
    display: block;
    font-weight: 600;
    font-size: 18px;
    padding: 20px 0 4px;
}
.contact-details-cnt i {
    font-size: 20px;
    color: var(--white);
    background: var(
    --primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    outline: solid 2px var(--secondary);
    outline-offset: 2px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}
.contact-details-cnt img {
    width: 100px;
}
.contactus iframe {
	width:100%;
    height: 100%;
    border-radius: 6px;
}
.contactus .contact-details-cnt p {
    margin: 0;
}
.contact-details-cnt p strong {
    font-size: 20px;
}
.contactus .contact-details-cnt h3 a,
.contactus .contact-details-cnt h3 {
    color: #626262;
    font-size: 15px;
    font-weight: normal;
font-family: 'Roboto', sans-serif;  
}
.contactus .contact-details-cnt h3 {
    margin: 0;
    line-height: 25px;
}
.contactus-form {
    box-shadow: 3px 3px 13px #ddd;
    padding: 15px;
    border-radius: 6px;
}
.contactus .contact-details-cnt:last-child {
    margin: 0;
}
.contactus-form h3 {
    border-left: 3px solid var(--primary);
    line-height: 24px;
    padding-left: 10px;
    width: fit-content;
    margin: 0 0 25px;
}

/* Blog */

.homebloglist img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.homebloglist {
    border: solid 1px #ddd;
    height: 100%;
    border-radius: 6px;
    background: #f9f9f9;
}

.homeblogbox {
    padding: 20px;
}

.homeblog .row {
    row-gap: 25px;
}
.homebloglist h3 a {
    font-size: 18px;
    line-height: 30px;
}
.homeblogbox span {
    color: var(--primary);
    font-weight: 600;
}

.homeblogbox span i {
    color: var(--secondary);
    margin-right: 8px;
}
.homebloglist h3 {
    margin: 12px 0 0;
}

/* Policy */

.policy ul {
    padding-left: 15px;
    margin-bottom: 10px;
}
.policy ul li {
    list-style-type: disc;
}

/* Services Details */

.page-sidebar {
    position: sticky;
    top: 0;
}
.sidebar-inquiry, .sidebar-contactdtls {
    padding: 15px;
    border-radius: 6px;
}
.sidebar-inquiry.resourcesmenu {
    margin: 15px 0;
}
.sidebar-inquiry {
    background: #fbfdff;
    box-shadow: 2px 2px 13px #ddd;
}
.sidebar-contactdtls {
    background: var(--primary);
}
.resourcesmenu ul li {
    position: relative;
    border-bottom: solid 1px #ddd;
    line-height: 35px;
    padding-left: 22px;
}
.resourcesmenu ul li:before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 13px;
}
.resourcesmenu ul li:first-child{
	padding-top:0;
}
.resourcesmenu ul li:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.sidebar-inquiry input, .sidebar-inquiry textarea, .sidebar-inquiry select{
    border: solid 1px  var(--secondary);
}
.sidebar-inquiry input[type="submit"] {
    margin-top: 8px;
    background: var(--primary);
    border: none;
}
.contactus-details {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 12px;
    border-bottom: solid 1px #eee;
    padding-bottom: 12px;
}
.sidebar-contactdtls .contactus-cnt h5 {
    font-size: 17px;
    margin-bottom: 5px;
}
.contactus-details i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--white);
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sidebar-contactdtls .contactus-cnt p {
    margin: 0;
}
.sidebar-contactdtls .contactus-cnt h5, .sidebar-contactdtls .contactus-cnt p, .sidebar-contactdtls .contactus-cnt ul li, .sidebar-contactdtls .contactus-cnt a {
color: var(--white);
}
.sidebar-contactdtls .contactus-details {
    border-bottom: solid 1px #ffffff3b;
}
.sidebar-contactdtls .contactus-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.details-banner img {
    width: 100%;
    height: 445px;
    object-fit: cover;
    border-radius: 6px;
}
.resource-item {
    border: dotted 1px var(--primary);
    padding: 15px;
    height: 100%;
    border-radius: 6px;
}
.details-content .row {
    row-gap: 25px;
}
.details-banner {
    margin-bottom: 25px;
}
.details-content ul li, .details-content ol li {
    position: relative;
    padding-left: 18px;
    line-height: 26px;
}
.details-content ul li:before, .details-content ol li:before {
    content: '\f061';
    position: absolute;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    color: var(--secondary);
    font-weight: 600;
    font-size: 12px;
}
.details-content ul, .details-content ol {
    margin-bottom: 15px;
}

/* Client Portal */

.clientportal-box {
    background: #f9f9f9;
    padding: 20px;
    width: 400px;
    text-align: center;
    margin: 0 auto;
    border-radius: 6px;
    outline: solid 1px var(--primary);
    outline-offset: 5px;
}
.clientportal-box p a {
    text-decoration: underline;
    text-underline-offset: 1px;
    color: var(--secondary);
    letter-spacing: 1px;
}

/* SERVICES PAGE CSS */

.service img {
    width: 100%;
    height: auto;
}
.service-content {
    background: linear-gradient(90deg, #0382c724, transparent);
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}
.service-content .leftheading {
    font-size: 30px;
}
.service-content p {
    text-align: justify;
}
.tax {
    background: #ecf6fb;
    padding: 50px 0;
    margin-top: 60px;
}
.tax .row {
    row-gap: 22px;
}
.tax-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px 0 15px 15px;
    border: 1px solid #0382c738;
    height: 100%;
}
.tax-item figure {
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid #0382c738;
    border-radius: 15px 0 15px 15px;
}
.tax-item img {
    width: 64px;
}
.tax-item h3 {
    font-size: 18px;
    margin: 0;
}
.taxplaning {
    padding-top: 40px;
}
.taxplaning-item {
    box-shadow: 0 0 14px #0382c729;
    padding: 15px;
    border-radius: 15px;
    column-gap: 10px;
}
.taxplaning-item img {
    width: 70px;
}
.representation {
    background: #ecf6fb;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}
.details-content a {
    text-decoration: underline;
    color: var(--primary);
}
.taxglossary p a {
    border: solid 1px #ddd;
    width: 28px;
    height: 28px;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    margin-right: 2px;
    text-decoration: none;
}
.taxglossary p a:hover {
    background: var(--primary);
    color: var(--white);
}
.details-content .taxdue ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 10px;
    align-items: center;
}
.details-content .taxdue ul li a {
    border: solid 1px var(--primary);
    padding: 5px 20px 7px;
    text-decoration: none;
    border-radius: 6px;
    transition: all ease-in-out .5s;
}
.details-content .taxdue ul li a:hover {
    background: var(--secondary);
    color: var(--white);
}
.details-content table {
    border: solid 1px #ddd;
    width: 100%;
    margin-bottom: 15px;
}
.details-content table tr, .details-content table th, .details-content table td {
    border: solid 1px #ddd;
    padding: 6px 15px;
}
.details-content table th {
    background: var(--primary);
    color: var(--white);
}
.details-content .taxdue ul li:before{
	display:none;
}
.licensed_content.payment {
    max-width: 600px;
    background: #f9f9f9;
    padding: 10px 25px 25px;
    margin: 0 auto;
    text-align: center;
    border-radius: 6px;
}
.licensed_content.payment form {
    margin-bottom: 20px;
}
.payment-form input[type="submit"] {
    margin-top: 8px;
}
.licensed_content.payment form br{
	display:none;
}
.payment-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

/* Membership */

.membership ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin: 35px 0;
}

.membership ul li {
    width: 33.333%;
    border-left: solid 1px var(--primary);
    border-right: solid 1px var(--secondary);
    padding: 20px;
    border-radius: 20px;
}
.membership ul li:nth-child(4), .membership ul li:nth-child(5){
width:50%;	
}

.membership ul li strong {
    font-size: 20px;
    display: block;
    margin: 18px 0 10px;
}

/* Chairman Message */

.chairmantop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.chairmancnt ul li {
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
}
.chairmancnt ul li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}
.chairmancnt {
    border-top: solid 1px #2666ae;
    margin-top: 30px;
    padding-top: 30px;
}
.chairmancnt img {
    border: solid 2px var(--primary);
    padding: 10px;
    border-radius: 6px;
    width: 250px;
}
.chairmancnt h3 {
    margin: 25px 0 15px;
}

/* Gaitech */

.gaitechintro .row {
    row-gap: 15px;
}
.gaitechintro-item {
    border: solid 1px #ddd;
    padding: 15px;
    border-radius: 6px;
    height: 100%;
    text-align: center;
}
.gaitech p img {
    width: 350px;
    margin: 0 auto 25px;
    display: block;
}
.gaitechintro-item img {
    width: 80px !important;
    margin: 0 auto 10px;
}
.gaitechintro-item p:last-child {
    margin-bottom: 0;
}
.gaitechintro {
    margin-bottom: 30px;
}
.gaitech ul {
    margin-bottom: 20px;
}
.gaitech ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}
.gaitech ul li:before {
    content: '\f192';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: var(--secondary);
}
footer .wpcf7 form.invalid .wpcf7-response-output, footer .wpcf7 form.unaccepted .wpcf7-response-output, footer .wpcf7 form.payment-required .wpcf7-response-output {
    color: var(--white) !important;
}
footer .wpcf7 form.sent .wpcf7-response-output {
    color: var(--white) !important;
}
.gaitech img {
    max-width: 280px;
    margin: 0 auto 30px !important;
    display: block;
}


@media only screen and (max-width:1200px){
	.mainslider .carousel-caption p {
    padding: 0;
}
.mainslider figure img {
    height: 550px;
}
.gallery-item figure img {
    height: 220px;
}	
}
@media only screen and (max-width:1000px){
#rmp_menu_trigger-573.is-active {
    background: #e39b46 !important;
}	
.mainslider .carousel-caption h1 {
    font-size: 50px;
    line-height: 50px;
}	
.mainslider .carousel-caption span {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 1px;
}	
.mainslider figure img {
    height: 480px;
}
.products .row {
    row-gap: 25px;
}	
.about-content {
    margin-top: 15px;
}
.services-item figure img {
    height: 300px;
}
#rmp-container-573 {
    background: var(--white) !important;
}
#rmp-menu-wrap-573 .rmp-menu-item-link {
    color: var(--black) !important;
}	
.mainmenu {
    padding: 15px 0;
}
.menubar {
    display: flex;
    justify-content: flex-end;
}
div#rmp-menu-title-573 img {
    height: auto;
    width: 150px;
}
#rmp-menu-wrap-573 .rmp-menu-current-item .rmp-menu-item-link {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}
#rmp-menu-additional-content-573 {
    font-size: 19px;
    line-height: 33px;
    color: var(--primary) !important;
    font-weight: 500;
}	
.sidebar-inquiry {
    margin: 15px 0;
}
.admin-bar .rmp-container, .admin-bar .rmp_menu_trigger {
    margin-top: 0 !important;
}	
}
@media only screen and (max-width:768px){
.mainslider figure img {
    height: 430px;
}
.mainslider .carousel-caption h1 {
    font-size: 40px;
    line-height: 30px;
}
.contactus .col-sm-6 {
    width: 100%;
}
.contact .d-flex {
    display: block !important;
}
.contact-info, .contact-form {
    width: 100% !important;
    padding: 30px;
}
.contactus {
    padding: 45px 0 60px;
}
.arrowbutton.prev {
    left: 0 !important;
}
.arrowbutton.next {
    right: 0 !important;
}	
}
@media only screen and (max-width:568px){
.membership ul {
    row-gap: 15px;
}
.membership ul li, .membership ul li:nth-child(4), .membership ul li:nth-child(5){
    width: 100%;
}	
.mainslider .mobileslider{
display:block !important;
}	
.mainslider .desktopslider{
		display:none;
	}	
.blog-item figure {
    height: auto;
}	
header .col-sm-8 {
    background: #2997f6;
    margin-top: 10px;
}	
.mainmenu {
    padding: 10px 0 0 !important;
}
.homeabout {
    padding: 20px 0 60px;
}	
.top-contact, .smoicons ul{
    justify-content: center;
}
.carousel-control-prev {
    left: 5px !important;
}
.carousel-control-next {
    right: 5px !important;
}
.carousel-control-next, .carousel-control-prev {
    width: 40px !important;
    height: 40px !important;
}
.products .row {
    row-gap: 15px;
}
.gallery-item figure img {
    height: 300px;
}	
.mainslider .carousel-caption h1 {
    font-size: 35px;
    line-height: 35px;
}	
.mainslider .carousel-caption span {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0;
}	
.mainslider .carousel-caption p {
    font-size: 15px;
    margin: 27px 0 18px;
    line-height: 24px;
}
.breadcrumb {
    padding: 35px 0;
}
.details-banner img {
    height: 400px;
}
.blog ul.blog_top_cnt {
    flex-wrap: wrap;
}
.contact-info h2 {
    font-size: 30px;
}
footer .col-lg-3 {
    padding: 15px;
}
.heading {
    margin-bottom: 30px;
    font-size: 25px;
    letter-spacing: 0px;
}	
}
@media only screen and (max-width:479px){
.mainslider .carousel-caption h1 {
    font-size: 25px;
    line-height: 26px;
}	
.mainslider .carousel-caption span {
    margin-bottom: 10px;
}
.mainslider .carousel-caption p {
    margin: 8px 0 18px;
    line-height: 24px;
}
.copyright ul {
    column-gap: 15px;
    margin-bottom: 20px;
}	
.smoicons {
    display: none;
}
.top-contact {
    justify-content: center;
}	
.copyright {
    margin-top: 15px;
}
.breadcrumb h1 {
    font-size: 22px;
}
.about-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 35px;
}
.about-content {
    padding: 20px;
}	
.details-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}	

}
@media only screen and (max-width:414px){
.top-contact i {
    margin-right: 5px;
}	
	
}
@media only screen and (max-width:375px){
	
}
@media only screen and (max-width:360px){
	
}


