html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    font-family: Poppins;
}

p {
    margin-top: 0;
    margin-bottom: 0rem;
}

a {
    color: #34ABEE;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #000000;
}

input:focus, textarea:focus, button:focus {
    border: 0;
    outline: 0;
    box-shadow: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    font-family: Poppins;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 22px;
}

.container {
    max-width: 1280px;
    width: 99%;
}

ul.lists {
    margin-bottom: 20px;
}

ul.lists li {
    margin: 5px 0;
}

/* --- Scrollbar Code --- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #34ABEE;
}

::-webkit-scrollbar-thumb {
    background: #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #575757;
}

/* --- Button Code --- */
.custom-btn {
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    border-radius: 0px;
    padding: 12px 35px;
    position: relative;
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    background: #aa1313;
    margin-top: 20px;
}

.custom-btn::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #0f08ad;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 0px;
    transition: .5s;
    opacity: 0;
}

.custom-btn:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    border-radius: 0px
}

.custom-btn:hover {
    text-decoration: none;
}
a.custom-btn.border-btn:nth-child(2) {
    border: 1px solid #fff;
    background: transparent;
}
.border-btn {
    border: 1px solid #aa1313;
    background: #aa1313 0% 0% no-repeat padding-box;
}

.border-btn:hover {
    color: #ffffff;
}

.dark-btn {
    color: #ffffff;
    background-color: #000000;
}

.dark-btn:hover {
    color: #ffffff;
}

.light-btn {
    color: #000000;
    background-color: #34ABEE;
}

.light-btn:hover {
    color: #ffffff;
}

header {
    transition: all .8s ease-in-out;
}

.header_area {
    width: 100%;
    clear: both;
    top: 0;
    z-index: 999999;
    background: #fff;
    padding: 15px 10%;
}

a.logo-div>img {
    max-width: 200px;
}

.logo {
    position: relative;
    z-index: 9;
}

.logo a {
    display: inline-block;
    position: relative;
}

.header_details {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header_details ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
}

span.content h6 {
    color: #0f08ad;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
}

span.content a {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.header_details ul li {
    display: flex;
    align-items: center;
    margin-left: 60px;
    position: relative;
}
.header_details ul li:first-child{margin-left:0;}
span.img-cls {
    margin-right: 12px;
}
span.content a:hover {
    color: #6AC8FA;
}
.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 20px;
    right: 0px;
    background-color: #34ABEE;
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #34ABEE;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.back-to-top:hover {
    background-color: #fff;
}

.back-to-top:hover i {
    color: #34ABEE;
}

section.banner-section {
    position: relative;
    padding: 100px 0 70px 0;
}

section.thankyou-banner {
    padding: 150px 0;
}

section.banner-section:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #070707;
    opacity: .59;
    z-index: 0;
}

section.banner-section .container {
    z-index: 1;
    position: relative;
}

/* section.banner-section .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 9;
} */

.banner-content-div h1 {
    color: #FFF;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.banner-content-div p.offer-txt {
    animation: blink-animation 1.5s linear infinite;
    -webkit-animation: blink-animation 1.5s linear infinite;
    border: 2px dashed #fff;
    border-radius: 10px;
    padding: 7px 20px;
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px !important;
}

.addHeading .content_boxes_hd {
    background: #0f08ad;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    padding: 10px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 60px;
}

@keyframes blink-animation {
	0% { 
	  opacity: 0; 
	} 

	50% { 
		opacity: 0.7; 
	} 

	100% { 
		opacity: 0; 
	} 
}


.banner-content-div h3 {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin: 20px 0px;
}

.banner-content-div p {
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}

.Enquiry_form {
    background: #6AC8FA;
    padding: 25px 15px;
    z-index: 9;
    position: relative;
}

.wpcf7-form-control-wrap {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 12px;
}

.form_field input, .form_field select {
    width: 100%;
    outline: none;
    padding: 10px 15px;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background-color: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(10px);
    color: #29303F;
    font-family: Poppins;
    font-size: 15px;
}

.form_field textarea {
    width: 100%;
    outline: none;
    padding: 10px 15px;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background-color: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(10px);
    color: #29303F;
    font-family: Poppins;
    font-size: 15px;
    height: 120px;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #29303F;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #29303F;
    opacity: 1;
}

::placeholder {
    color: #29303F;
    opacity: 1;
}

.form_submit_field input {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    outline: none;
    transition: 0.4s;
    z-index: 99;
    position: relative;
    letter-spacing: 0px;
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
}

.form_submit_field input:hover {
    color: #fff;
}

.form_submit_field p {
    display: inline-block;
    position: relative;
    border: 1px solid #aa1313;
    overflow: hidden;
    width: 100%;
    max-width: 240px;
    height: 60px;
    background: #aa1313;
    margin-top: 10px;
    border-radius: 2px;
}

.form_submit_field p:hover::before {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: #0f08ad;
}

.form_submit_field p::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background-color: #000;
    left: 0;
    top: 0;
    border-radius: 0px;
    transition: .5s;
    opacity: 0;
}

.Enquiry_form .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form_field {
    width: 50%;
    padding: 0px 6px;
}

.form_field.services, .form_field.message {
    width: 100%;
}

.form_submit_field {
    text-align: center;
}

.Enquiry_form h2 {
    margin-bottom: 20px;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 32px;
    font-weight: 700;
}

input.wpcf7-not-valid, select.wpcf7-not-valid, textarea.wpcf7-not-valid {
    border: 1px solid #f00 !important;
    box-shadow: 0px 0px 2px #f00;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: none !important;
    padding: 0px !important;
    margin: 0 !important;
    text-align: center;
    color: #fff;
}

.wpcf7-not-valid-tip {
    color: #fff;
    font-size: 11px;
}

.Enquiry_form .row {
    margin: 0;
}

.container-fluid.content_area_wrapper {
    padding: 70px 0;
    position: relative;
}

.in_icon_circle {
    width: 78px;
    height: 78px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.in_content_box {
    border-radius: 5px;
    background: rgb(52 171 238 / 10%);
    backdrop-filter: blur(5px);
    height: 100%;
    padding: 25px;
}

.in_icon_circle img {
    position: relative;
    left: 10px;
}

.in_content h5 {
    color: #004da8;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.in_content p {
    color: #181818;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.row.content_boxes_wrp {
    padding: 70px 0px;
    position: relative;
}

.call_us_details {
    background: #34ABEE;
    padding: 20px;
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call_us_details a {
    color: #fff;
    display: inline-block;
    margin: 0px 10px;
    font-weight: 700;
}

.call_us_details img {
    padding: 0px 10px;
}

.call_us_details a:hover {
    color: #004da8;
}

.container-fluid.about_content_wrapper {
    padding: 80px 0px;
}

.inner_content p {
    padding: 10px 0px 10px;
    color: #000;
    font-family: Poppins;
    font-weight: 400;
    line-height: 1.6;
}

.inner_content h6 {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; 
}

.inner_content p a {
    text-decoration: underline;
    color: #181818;
}
.inner_content ul {
    padding-left: 20px;
}

.inner_content ul li {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
}
.inner_content p a:hover, .common_btn span a:hover {
    color: #34ABEE;
}

.inner_content {
    padding-right: 15px;
}
.inner_content .title-box:after {
    right: auto;
}

.inner_content .title-box {
    margin-bottom: 25px;
}


.container-fluid.portfolio_wrapper {
    background-size: cover;
    padding: 30px 0px 70px;
}

.portfolio_wrapper .headings h2, .portfolio_wrapper .headings h5 {
    color: #fff;
}

.gallery_img_box , .n_p{
    padding: 0;
}

.gal_images img {
   
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.portfolio_wrapper .title-box {
    text-align: center;
}

.container-fluid.testimonail_wrapper {
    background-size: cover;
    background-position: center center;
    padding: 80px 0px 100px;
}

.testimonail_wrapper .carousel-item {
    padding: 30px;
}

.t_content p {
    color: #181818;
    font-family: Poppins;
    font-size: 16px;
    line-height: 1.6;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 24px;
}

.t_content h5 {
    color: #000;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
}

.t_content h6 {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

.testimonail_wrapper .carousel-inner {
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.06);
}

img.quote {
    position: relative;
    left: 28px;
    margin-bottom: -17px;
    z-index: 9999999;
}

.testimonail_arrow a, .testimonail_arrow button {
    position: relative;
    display: inline-block;
    font-size: 55px !important;
    line-height: 0px !important;
    color: #34ABEE !important;
    transition: .4s;
    opacity: 1;
}

.testimonail_arrow a.carousel-control-prev , .testimonail_arrow button.carousel-control-prev {
    transform: rotate(180deg);
    transform-origin: 37% 0%;
    position: relative;
    top: 9px;
}

.testimonail_arrow {
    display: flex;
    align-items: center;
    margin-top: 70px;
}

a.carousel-control-next {
    position: relative;
    left: -40px;
}

.testimonail_arrow a:hover, .testimonail_arrow button:hover {
    color: #004da8 !important;
}

.testimonail_content {padding: 0px 0px 30px;}


.testimonail_arrow a.carousel-control-prev, .testimonail_arrow button.carousel-control-prev img.circle2.circle_left {
    bottom: 28px;
    left: -108px;
    z-index: -1;
}

.container-fluid.testimonail_wrapper .row {
    position: relative;
}

.gal_images:hover img {
    transform: scale(1.05);
}

.gal_images {
    overflow: hidden;
    transition: 0.4s;
    padding: 8px;
}

.gal_images img {
    transition: 0.4s;
}
.row.ga1_sec2 img {
    height: 301px;
}

.row.ga1_sec3 img {
    height: 158px;
}

.ga1_sec img {
    height: 100%;
}

.gallery_img_box.ga1_sec {
    height: 100%;
}

.ga1_sec .gal_images {
    height: 100%;
}
header.fixed-header {
    position: fixed;
    z-index: 99;
    width: 100%;
}

.fixed-header a.logo-div img {
    width: 145px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../images/select-ar1.png');
    background-repeat: no-repeat;
    background-position: 96% center;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: transparent !important;
}
.row.gallery_images_wrp .row {
    margin: 0;
}
.container-fluid.clients-section {
    background: #fff;
    padding-bottom: 20px;
}
.title-box{
	color: #000;
	font-family: Poppins;
	font-style: normal;
	font-weight: 700;
	margin-bottom: 56px;
	position: relative;
}
.title-box:after {
    position: absolute;
    content: '';
    left: 0%;
    right: 0;
    bottom: -18px;
    margin: auto;
    height: 2px;
    width: 125px;
    background-color: #325FC9;
}
ul.sponsors-carousel {
    padding: 0;
    margin: 0;
}
.partner_wrap .image-box{
  position:relative;
  text-align:center;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
  display: block;
}

.partner_wrap .image-box img{
  max-width:100%;
  width:auto;
  opacity:1;
  display:inline-block;
  -webkit-transition:all 300ms ease;
  -ms-transition:all 300ms ease;
  -o-transition:all 300ms ease;
  -moz-transition:all 300ms ease;
  transition:all 300ms ease;
}

.partner_wrap .image-box img:hover{
  opacity:0.6;
}
.partner_wrap li.slide-item {
    margin: 0px 5px;
}
.partner_wrap {
    text-align: center;
}
.mobile{
	display: none;
}
.about_content_wrapper .inner_content {
    padding-right: 0;
    padding-left: 24px;
}

.about_content_wrapper h2.title-box {
    color: #fff;
}

.about_content_wrapper .inner_content p {
    color: #fff;
    padding: 10px 0px;
}
.about_content_wrapper a.custom-btn.border-btn {
    margin: 24px 0px 0;
}
.about_content_wrapper h2.title-box:after {
    background: #fff;
}
.why_image {
    display: flex;
    justify-content: flex-end;
}
.why_content ul {
    padding: 0;
}

.why_content p {
    padding: 16px 0px;
}

.why_content ul li{
	color: #000;
	font-family: Poppins;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	list-style:none;
	background-image: url('../images/li.png');
	background-repeat: no-repeat;
	padding-left: 30px;
	margin: 15px 0px;
	background-position: 0 4px;
}
section.counter-section {
    background-color: #191A1A;
    padding: 40px 0;
}

section.counter-section h6.number {
    color: #6AC8FA;
    text-align: center;
    font-family: Poppins;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
}

section.counter-section .row>div {
    text-align: center;
}

section.counter-section p {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

section.counter-section .row>div:last-child>div {
    border-right: 0px solid #fff;
}

section.counter-section .row>div>div {
    border-right: 1px solid #d9d9d9;
}

/* --- Footer Code --- */
footer {
    background-size: cover;
    background-position: center;
}

section.map-section iframe {
    width: 100%;
    height: 650px;
    display: block;
}

.container-fluid.copyright {
    border-top: 1px solid #002773;
}

.copyright .row {
    padding: 25px 0;
}

.copyright p {
    margin: 0;
    color: #fff;
}

.footer-info {
    padding: 50px 0 30px 0;
}

.footer-info h2 {
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-info .finfo-row {
    margin: 0;
    padding: 20px;
    list-style: none;
    border: 1px solid #fff;
}

.footer-info .finfo-row p {
    margin: 0;
}

.footer-info .finfo-row span {
    color: #fff;
    font-weight: 700;
    display: block;
}

.footer-info .finfo-row a {
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.footer-info .finfo-row a:hover {
    color: #3FA7DF;
}

.footer-info .finfo-row>div {
    text-align: center;
}

.footer-info .finfo-row>div:last-child {
    border-right: 0;
    border-bottom: 0;
}

.footer-info .finfo-row>div {
    border-right: 1px solid #fff;
}
.footer-info .finfo-row p{
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.cta_wrapper {
    background: #325FC9;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding: 34px 0px;
}

.cta_wrapper img.man {
    position: absolute;
    left: -50px;
    top: -95px;
}

.container-fluid.cta_testimonail_wrapper {
    padding: 100px 0px ;
    position: relative;
    overflow: hidden;
}

.cta_wrapper .col-md-7 {
    padding: 0px 20px;
}

.cta_wrapper h2 {
    color: #FFF;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    margin: 0;
    padding-bottom: 15px;
}

.cta_wrapper p {
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    padding: 15px 0px;
}
.cta_wrapper a.custom-btn{
    font-size: 18px;
    line-height: 48px;
}

.cta_wrapper a.custom-btn:first-child {
    margin-left: 0;
}
.cta_wrapper .title-box:after {
    right: auto;
    background-color: #fff;
    bottom: -5px;
}
img.img-fluid.dots {
    position: absolute;
    left: 0;
    top: 22%;
}

img.img-fluid.c1 {
    position: absolute;
    right: 0;
    bottom: -220px;
}
.testimonail_boxes_wrp {
    padding: 0px 25px;
    padding-bottom: 60px;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
    z-index: 9;
}
.carousel-items {
    background: #121930;
    padding: 30px;
    position: relative;
	margin:0px 6px;
    height: 100%;
}

.carousel-items p {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.t_content h6 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    padding-top: 10px;
}
.t_box {
    position: relative;
    padding: 15px 10px;
}
.carousel-items .q2 {
    position: absolute;
    left: 15px;
    top: 15px;
}

.carousel-items .q1 {
    position: absolute;
    right: 15px;
    bottom: 40px;
}
.testimonail_wrapper .owl-item img {
    display: block;
    width: auto;
}
.headings {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonail_wrapper .view_more a {
    margin: 0;
}

.testimonail_wrapper .headings .title-box:after {
    right: auto;
}
.testimonail_wrapper .owl-nav.disabled {
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 90%;
    padding-bottom: 60px;
    display: block !important;
    position: relative;
    margin: 0;
}
.testimonail_wrapper button.owl-prev, .testimonail_wrapper button.owl-next {
    width: 36px;
    height: 19px;
    padding: 0 !important;
    border: none !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
}
.testimonail_wrapper button span{
	display: none;
}
.testimonail_wrapper button.owl-prev {
    background-image: url('../images/ch_prev.png') !important;
    left: 0;
    bottom: -50px;
    position: absolute;
}
.testimonail_wrapper button.owl-prev:hover {
    background-image: url('../images/ch_prev_h.png')!important;
}
.testimonail_wrapper button.owl-next {
    background-image: url('../images/ch_next.png')!important;
    position: absolute;
    right: 0;
    bottom: -50px;
}
.testimonail_wrapper button.owl-next:hover {
    background-image: url('../images/ch_next_h.png')!important;
}
.testimonail_wrapper .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
    padding: 0 !important;
}
.testimonail_wrapper .owl-stage {
    display: flex;
}
.testimonail_wrapper .owl-item {
    float: none !important;
    min-height: 100% !important;
}


.feature_sec {
    margin-bottom: 60px;
}

.f_img {
    margin-bottom: 20px;
}

.f_content h4 {
    margin-bottom: 15px;
    font-size: 22px;
}

.f_img>img {
    width: 100px;
}

.service_wrapper button.owl-prev,
.service_wrapper button.owl-next {
    position: absolute;
    top: 25%;
}

.service_wrapper button.owl-next {
    right: -5%;
}

.service_wrapper button.owl-prev {
    left: -5%;
}

.service_wrapper button.owl-prev>span,
.service_wrapper button.owl-next>span {
    background-color: #fff;
    width: 50px;
    height: 50px;
    font-size: 50px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.service_wrapper button.owl-prev>span:hover,
.service_wrapper button.owl-next>span:hover {
    background-color: #000;
    color: #fff;
}

.service_wrapper {
    background-size: cover;
    padding: 60px 0;
}

.service_wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.ser-img {
    margin-bottom: 25px;
}

.ser-cont h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.ser-cont p {
    color: #fff;
    font-size: 15px;
}

.ser-box {
    padding: 0 10px;
}