/*=====Reset CSS======*/

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
label {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="buttton"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input[type="buttton"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
label {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure,
img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}



.svg_container {
  display: none;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}


a:hover {
  text-decoration: none;
}

:root {
  --pink: #034d8e;
}

::-moz-selection {
  background-color: var(--pink);
  color: #fff;
}

::selection {
  background-color: var(--pink);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
}

::-webkit-scrollbar-track {
  background-color: transparent;
}


body {
  font-size: 17px;
  line-height: 27px;
  color: #000000;
  background: #fff;
  font-family: 'Urbanist', sans-serif;
  overflow-x: hidden;
}

h1{
  font-size: 45px;
  line-height: 57px;
  color: #020047;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

h2{
font-size: 40px;
line-height: 52px;
color: #020047;
font-family: 'Inter', sans-serif;
font-weight: 700;
}

h3{
  font-size: 44px;
  line-height: 52px;
  color: #020047;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: capitalize;
}

p{
  font-size: 16px;
  line-height: 25px;
  color: #929aa6;
}
.cmn_btn{
    font-size: 15px;
    line-height: 27px;
    color: #ffffff;
    background-color: #6d3eff;
    min-width: 165px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: 600;
}

.cmn_btn:hover{
  color: #6d3eff;
  background-color:transparent;
  border-color: #6d3eff;
}


/* .cmn_btn:hover::before,
.cmn_btn:hover::after{
  display:none;
} */




.navbar-light .navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler span {
  height: 3px;
  width: 26px;
  background: var(--pink);
  border-radius: 5px;
  margin: 6px 0;
  transform-origin: left;
  transition: all 0.5s;
  display: block;
}

.navbar-toggler[aria-expanded="true"].navbar-toggler .bar-top {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"].navbar-toggler .bar-middle {
  opacity: 0;
  /* transform: translateX(1rem); */
}

.navbar-toggler[aria-expanded="true"].navbar-toggler .bar-bottom {
  transform: rotate(-45deg);
}

.header {
  padding: 26px 0 17px;
  position: sticky;
  top:0;
  background: #fff;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.header .navbar-brand {
  padding: 0;
}

.header .navbar-expand-lg .navbar-collapse {
  justify-content: end;
	width: auto;
	/*Eddie code*/
}

/* .header .navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: var(--pink);
} */

.header .navbar-light .navbar-nav .nav-link {
  font-size: 15px;
  line-height: 27px;
  padding: 0;
  color: #333333;
  position: relative;
  padding: 10px 0;
  font-weight: 600;
}

.header .navbar-light .navbar-nav .nav-link.active,
.header .navbar-light .navbar-nav .nav-link:hover {
  color: #6d3eff;
}


.header .navbar-light .navbar-nav .nav-item {
  margin-right: 32px;
}
.header .navbar-light .navbar-nav .nav-item:nth-child(8){
margin-right: 20px;
}
/* .header .navbar-light .navbar-nav .nav-link sup{

} */
.header .navbar-expand-lg{
padding: 0;
}
.header .navbar-light .navbar-nav .nav-item:last-child{
margin-right: 0;
}
.header .ctn_btn{
  margin-left: 45px;
}
.ctn_btn a{
  background-color: #6d3eff;
  min-width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: #fff;
  font-size: 15px;
  line-height: 27px;
  font-weight: 600;
  border: 1px solid transparent;
  text-transform: uppercase;
}
.ctn_btn a:hover{
  border-color: #6d3eff;
  color: #6d3eff;
  background: transparent;
}
/* side bar css */
.side_bar{
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.side_bar a{
  padding: 65px 5px;
  writing-mode: vertical-rl;
  background-color: #6d3eff;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
/* side bar css */
/* banner start*/
.banner_slider .item{
    position: relative;
}
.banner_slider .bnr_cnt {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 120px 0;
  transform: translate(0% , -50%);
  right: 0;
  width: 100%;
}
.bnr_cnt h1{
  max-width: 555px;
}
.banner_slider .slick-dots li{
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
}
.banner_slider .slick-dots li button:before{
  width: 12px;
  height: 12px;
  font-size: 0;
  background-color: transparent;
    border-radius: 50%;
    padding: 0;
    border: 1px solid #d6d6d6;
    opacity: 1;
}

.banner_slider .slick-dots{
  bottom: 11px;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.bg_img img{
  width: 100%;
}

.banner .slider-nav .slick-arrow{
  height: 40px;
    width: 40px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 50%;
}
.banner .slider-nav{
  max-width: 1110px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 85px;
}
.banner{
  position: relative;
}
.banner .slider-nav .slick-arrow.next{
  margin-left: 7px;
}
/* 06.02.23 start */
.bg_img {
  position: relative;
}
/* 06.02.23 end */
/* banner end */
/* surajit 26.05.23 */
/* unabaling sec start */

.unabaling {
  padding: 92px 0 122px;
  position: relative;
}

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

.unabaling_bg_img {
  position: absolute;
  right: 0;
  top: 0;
}

.unabaling_img {
  margin-left: -130px;
  /* padding-right: 40px; */
  padding-right: 30px;
  position: relative;
  /* border-radius: 20px; */
}

.unabaling_img::before {
  content: '';
  background: url(../images/line.png);
  position: absolute;
  left: -32px;
  height: 290px;
  width: 6px;
  top: 30px;
}

.unabaling_img::after {
  content: '';
  background: url(../images/line.png);
  position: absolute;
  right: 0;
  height: 290px;
  width: 6px;
  bottom: 30px;
}

.unabaling_img img {
  width: 100%;
  border-radius: 20px;
}

.unabaling_txt {
  /* padding-left: 42px; */
  padding-left: 19px;
}

.unabaling_txt p {
  font-size: 17px;
  letter-spacing: 0px;
  line-height: 27px;
  color: #000000;
  font-weight: 400;
  font-family: "Urbanist";
  padding: 38px 0 40px 0;
  max-width: 485px;
}

/* unabaling sec end */

/* ccube sec start */
/* .ccube {
  padding: 271px 0 224px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
} */

.ccube .row {
  justify-content: flex-end;
}

.ccube_txt h2 {
  padding-bottom: 40px;
}

.ccube_txt .f_p {
  font-size: 17px;
  letter-spacing: 0px;
  line-height: 27px;
  color: #000000;
  font-weight: 500;
  font-family: "Urbanist";
  padding-bottom: 34px;
  max-width: 500px;
}

.ccube_txt .s_p {
  font-size: 20px;
  line-height: 30px;
  color: #020049;
  font-weight: 600;
  font-family: "Inter";
  padding-bottom: 38px;
  max-width: 500px;
}

/* ccube sec end */

/* adopting sec start  */
.adopting {
  padding: 92px 0 112px;
}

.adopting .row {
  flex-direction: row-reverse;
}

.adopting .unabaling_img {
  margin-right: -130px;
  padding-left: 30px;
  margin-left: 0;
}

.adopting .unabaling_img::before {
  left: 0;
}
.adopting_bg_img{
  position: absolute;
  left: 0;
  bottom: 0;
z-index: -1;
}
/* adopting sec end */
/* ccube counter sec start */
 .c_cube_count{
  background-color: #e6f0f7;
  padding: 55px 0 45px;
 }
 .cube_countr label{
  font-size: 62px;
  color: #6d3eff;
  font-weight: 800;
  margin-bottom: 15px;
  display: inline-block;
 }
 .cube_countr h4{
  font-size: 18px;
    line-height: 22px;
    color: #020049;
    font-weight: 800;
 }
 .cube_countr{
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  justify-content: space-between;
 }
 .cube_countr li {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  line-height: normal;
  flex: 1;
}
.cube_countr li::after{
  position: absolute;
  content: '';
  top: 0;
  right: -33px;
  bottom: 0;
  height: 100%;
  width: 1px;
  background-color: #b4d4ea;
}
.cube_countr li:last-child:after{
  content: none;
}
.ccube_hdng{
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
}
/* ccube counter sec end */
/* footer start */
.ftr{
  background-color: #002845;
  padding: 50px 0 30px;
}
.scl_icon{
  display: flex;
}
.scl_icon li a{
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
}
.scl_icon li a:hover{
  color: #6d3eff;
}
.scl_icon li:not(:last-child){
  margin-right: 60px;
}
.scl_icon li span{
  margin-right: 15px;
}
.ftr .row{
  align-items: center;
}
.scl_icon_wtap{
  margin-left: 30px;
}
.btm_ftr{
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  border-top: 1px solid #1c4665;
  padding-top: 20px;
}
.plcy_txt ul {
  display: flex;
}
.plcy_txt ul li a{
  font-size: 17px;
  line-height: 27px;
  color: #fff;
  font-weight: 400;
}
.plcy_txt ul li a:hover{
  color: #6d3eff;
}
.cpy_txt p{
  font-size: 17px;
  line-height: 27px;
  color: #fff;
  font-weight: 400; 
}
.plcy_txt ul li:not(:last-child){
  padding-right: 40px;
}
/* footer end */


/* about_page_start */

/* about_banner */
.abt_bnr{
  /* padding: 295px 0 210px; */
  padding: 150px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ovr_ly_bnnr{
  position: relative;
}

.ovr_ly_bnnr::before{ 
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.63);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.abr_bnr_cnct{
  text-align: center;
  max-width: 775px;
  margin: 0 auto;
  position: relative;
}

.abr_bnr_cnct h2{
 
  color: #fff;
}

/* about_content */
.abt_pg_cnct{
  text-align: center;
  padding: 80px 0;
  background: #f2effc url(../images/abr_sec_bg_shp.png) no-repeat center;
  background-size: cover;
}

.abt_cnct_wrp{
  max-width: 930px;
  margin: 0 auto;
}
.abt_cnct_wrp p{
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 35px;
}
.abt_pg_cnct .ctn_btn a{
  border-radius: 8px;
}

/* about_page_end */


/* resource_page_start */

/* resource_bnnr */
.rsrce_bnr{
  padding: 120px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rsrce_bnr .rsrce_bnr_cnct{
  max-width: 730px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.rsrce_bnr .rsrce_bnr_cnct h2{
  color: #fff;
}

.rsrce_bnr .rsrce_bnr_cnct p{
  margin-top: 30px;
  font-size: 20px;
  line-height: 31px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.sec_ttle{
  padding: 0 0 25px 25px;
}


/* news_sec */
.news_sec{
  padding: 50px 0 65px;
  background: #f2effc url(../images/abr_sec_bg_shp.png) no-repeat center;
  background-size: cover;
}

.news_slider{
  margin-right: -15px;
  margin-left: -15px;
}

.news_item{
  padding: 20px 15px;
}

.crd_wrp{
  border-radius: 9px;
  overflow: hidden;
  /* filter: drop-shadow(0px 4px 17.5px rgba(0,0,0,0.16)); */
  box-shadow: 0px 4px 17.5px rgba(0,0,0,0.16);
  background-color: #fff;
  height: 100%;
  position: relative;
}

.crd_cnct{
  padding: 30px 35px 35px 35px;
  min-height: 160px;
}

.crd_cnct h6{
  font-size: 19px;
  line-height: 32px;
  color: #020047;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.news_slider .slick-arrow{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
}

.news_slider .slick-arrow:hover{
  background-color: #000;
}

.news_slider .slick-arrow.slick-next{
  right: -65px;
}

.news_slider .slick-arrow.slick-prev{
  left: -65px;
  z-index: 2;
}

.news_slider .slick-arrow::before{
  content: "\f053";
  font-family: "fontawesome";
  opacity: 1;
  color: #000;
  transition: all 300ms ease-in-out;
}
.news_slider .slick-arrow:hover::before{
  color: #fff;
}
.news_slider .slick-arrow.slick-next::before{
  content: "\f054";
}

.news_sec .ctn_btn{
  text-align: center;
  padding-top: 30px;
}

/* case_study */

.cse_stdy_sec{
  padding: 60px 0;
}

.study_itm_wrp > li{
  width: 50%;
  flex: 0 0 auto;
  margin-bottom: 40px;
}

.sty_cnct_wrp{
  height: 100%;
  border-radius: 9px;
  overflow: hidden;
  /* filter: drop-shadow(0px 4px 17.5px rgba(0,0,0,0.16)); */
  box-shadow: 0px 4px 17.5px rgba(0,0,0,0.16);
  background-color: #ffffff;
  padding-bottom: 50px;
  position: relative;
}

.sty_cnct_wrp::before{
  position: absolute;
  content: "";
  border-bottom: 55px solid #6d3eff;
  border-left: 50px solid transparent;
  bottom: 0;
  right: 0;
}

.sty_cnct_wrp h6{
  font-size: 25px;
  line-height: 32px;
  color: #020047;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 25px;
}

.sty_cnct_wrp p{
  font-size: 17px;
  line-height: 27px;
  color: #313131;
}

.sty_cnct_wrp .cnct_dtls{
  padding: 30px 65px 0 45px;
}


.cse_stdy_sec .ctn_btn{
  text-align: center;
  padding-top: 10px;
}
.crd_img img{
  width: 100%;
}

/* resource_page_end */



/* news_listing_page_start */

.news_list{
  padding: 70px 0 90px;
}

.news_list .news_item{
  padding: 0;
}

.news_list a{
  margin-bottom: 35px;
}

.news_list a .crd_img > img{
  transition: 400ms all ease-in-out;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news_list a .crd_img{
  overflow: hidden;
}
.news_list a:hover .crd_img > img{
  transform: rotate(2deg) scale(1.1);
}

.pagination{
  padding-top: 40px;
  justify-content: center;
  align-items: center;
}

.pagination li:first-child{
  margin-right: 20px;
}

.pagination li a{
  font-size: 16px;
  line-height: 20px;
  color: #020047;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  width: 19px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  text-transform: capitalize;
}

.pagination li a:hover,
.pagination li.active a{
  color: #fff;
  background-color: #020047;
}

.pagination li:first-child a,
.pagination li:last-child a{
  width: auto;
  height: auto;
  background-color: transparent;
  color: #020047;
}

.pagination li.disable a{
  color: #d4d4d4;
  font-weight: 400;
  pointer-events: none;
}

.pagination li:last-child{
  margin-left: 20px;
}

/* news_listing_page_end */



/* start EDMS PAGE 05_06_23 */

.rsrce_bnr.cloud_bnr .rsrce_bnr_cnct {
  max-width: 1050px;
}

.edms_section {
  border-top: 6px solid #020049;
}
.edms_text p {
  font-size: 17px;
  letter-spacing: 0px;
  line-height: 27px;
  color: #000000;
  font-weight: 400;
  font-family: "Urbanist";
  max-width: 485px;
  margin-bottom: 35px;
}
.edms_text h2 {
  margin-bottom: 40px;
}
.edms_text {
  padding-left: 85px;
}
.unabaling.edms_section h4 {
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 27px;
  color: #020047;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 35px;
}
.edms_section .unabaling_img::after {
  content: '';
  background: url(../images/rightline.png);
  width: 8px;
}
.unabaling.edms_section {
  padding: 68px 0px 86px;
}
.edmsboxsect {
  padding: 140px 0px 120px;
  background: url(../images/edmsboxbg.png);
  background-position: center center;
  background-size: cover;
}
.whitcontbox {
  border-radius: 9px;
  filter: drop-shadow(0px 4px 17.5px rgba(0,0,0,0.16));
  -webkit-filter: drop-shadow(0px 4px 17.5px rgba(0,0,0,0.16));
  background-color: #ffffff;
  padding: 50px 38px 40px;
  position: relative;
}
.edmsboxsect .whitcontbox + .whitcontbox {
   margin-top: 56px;
}
.edmsboxsect .whitcontbox::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    background-repeat: no-repeat;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 60px solid #6d3eff;
    border-bottom: 50px solid transparent;
    border-radius: 0px 9px 0px 0px;
}
.boxheadingsect {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 23px;
  padding-left: 160px;
}
.boxheadingsect h3 {
  font-size: 28px;
  line-height: 52px;
  color: #020047;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.boxheadingsect .roundiconbox {
  width: 132px;
  height: 132px;
  border-radius: 66px;
  background-color: #6d3eff;
  border: 4px solid #ffffff;
  top: -74px;
  left: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.edmsboxsect .whitcontbox p {
  font-size: 17px;
  letter-spacing: 0px;
  line-height: 27px;
  color: #313131;
  font-weight: 400;
  font-family: "Urbanist";
}
.edmsboxsect .whitcontbox p + p {
  margin-top: 40px;
}
.boxheadingsect .roundiconbox img {
  filter: drop-shadow(0px 18px 8px rgba(0,0,0,0.42));
}

/* end EDMS PAGE 05_06_23 */
/* how we work start */
.how_we_txt{
  padding-left: 55px;
}
.how_we_txt h2{
  max-width: 390px;
  margin-bottom: 25px;
}
.how_we_txt p span{
  color: #020049;
  font-weight: 700;
}
/* .digital_journey{
  background-image: url(../images/digital_journey.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 110px 0 100px;
  position: relative;
} */
.digitl_jounrey_cnt p{
  font-size: 17px;
    line-height: 27px;
    color: #000000;
    margin-bottom: 25px;
}
.digitl_jounrey_cnt{
  max-width: 700px;
}
.digitl_jounrey_cnt h2{
  margin-bottom: 40px;
}
.how_we_wrk_whitebox{
  padding: 0px 0 112px;
}
/* .hwrk_whitebox_wrap{
  display: flex;
  flex-wrap: wrap;
}
.hwrk_whitebox_wrap li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  width: 50%;
  margin-bottom: 30px;
} */
.how_we_wrk_whitebox .whitcontbox p{
  color: #313131;
  font-size: 17px;
  line-height: 27px;
}
.how_we_wrk_whitebox .whitcontbox p:not(:last-child){
padding-bottom: 25px;
}
/* .hwrk_whitebox_wrap li:nth-child(even){
float: left;
}
.hwrk_whitebox_wrap li:nth-child(odd){
  float: right;
} */
.reliable_wrap{
  display: flex;
}
.reliable_item {
  width: 50%;
}
.relible_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} 
.reliable{
  background-color: #f2effc;
  position: relative;
}
.relible_img{
  position: absolute;
  left: 0;
  width: 50%;
  top: 0;
  bottom: 0;
}
.reliable_txt{
  padding: 65px 0 65px 60px;
}
.reliable_txt p{
  color: #313131;
}
.reliable_txt p:not(:last-child){
  padding-bottom: 30px;
}
.reliable_txt h2{
  padding-bottom: 40px;
}
/* how we work end */
/* get_in_touch_start */

.frm_sec{
  padding: 85px 0 100px;
  background: #f2effc;
}

.frm_sec_ttle{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.frm_sec_ttle h1{
  margin-bottom: 35px;
}

.frm_sec_ttle p{
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 37px;
  color: #000000;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.frm_sec_conct_wrp{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.frm_sec_conct_wrp a{
  display: inline-flex;
  align-items: center;
  margin: 0 27px;
  font-size: 24px;
  line-height: 37px;
  color: #6d3eff;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.frm_sec_conct_wrp .img_wrp{
  width: 80px;
  min-width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #6d3eff;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frm_sec_conct_wrp .img_wrp img{
  filter: drop-shadow(0px 18px 8px rgba(0,0,0,0.42));
  -webkit-filter: drop-shadow(0px 18px 8px rgba(0,0,0,0.42));
}

.frm_sec_conct_wrp a span{
  position: relative;
}

.frm_sec_conct_wrp a span::after{
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: #6d3eff;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 400ms all ease-in-out;
}

.frm_sec_conct_wrp a:hover span::after{
  width: 100%;
}

.form_wrapper{
  padding-top: 45px;
}

.input_wrap{
  margin-bottom: 22px;
}

.input_wrap .input_itm{
  width: 100%;
  height: 69px;
  border-radius: 9px;
  box-shadow: 0px 4px 17.5px rgba(0,0,0,0.16);
  background-color: #ffffff;
  border: 1px solid transparent;
  outline: none;
  padding: 0 30px;
  font-size: 18px;
  line-height: 28px;
  color: #020047;
  font-weight: 600;
  transition: 400ms all ease-in-out;
}

.input_wrap .input_itm::placeholder{
  font-size: 15px;
  line-height: 27px;
  color: #020047;
  font-weight: 600;
  text-transform: capitalize;
}

.input_wrap .input_itm:focus{
  border-color: #6d3eff;
}

.input_wrap textarea.input_itm{
  height: 250px;
  padding-top: 35px;
  resize: none;
}

.check_box{
  max-width: 700px;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  color: #020046;
  font-weight: 600;
}

.check_box .checkmark{
  margin-right: 20px;
  margin-top: 4px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-color: #dacdcd;
  display: inline-block;
  position: relative;
}

.agree_check{
  position: relative;
  display: flex;
  align-items: flex-start;
}

.check_box input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.agree_check .checkmark:after {
  right: 0px;
  top: -4px;
  width: 8px;
  height: 16px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: scale(0) rotate(45deg);
  -moz-transform: scale(0) rotate(45deg);
  -ms-transform: scale(0) rotate(45deg);
  transform: scale(0) rotate(45deg);
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.check_box input[type="checkbox"]:checked~.checkmark:after {
  opacity: 1;
  -webkit-transform: scale(1) rotate(45deg);
  -moz-transform: scale(1) rotate(45deg);
  -ms-transform: scale(1) rotate(45deg);
  transform: scale(1) rotate(45deg);
}

.sbmt_btn{
  margin-top: 45px;
  text-align: center;
}

.sbmt_btn input[type="submit"]{
  min-width: 365px;
  height: 69px;
  border-radius: 9px;
  box-shadow: 0px 4px 17.5px rgba(0,0,0,0.16);
  background-color: #6d3eff;
  border: 2px solid #6d3eff;
  font-size: 20px;
  line-height: 27px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.sbmt_btn input[type="submit"]:hover{
  color: #6d3eff;
  background-color: #fff;
}

.book_dmo_frm_sec{
  padding: 80px 0 85px;
  background: #f2effc url(../images/book_dmo_pg_bg.png) no-repeat center;
  background-size: cover;
}

/* get_in_touch_end */


/* news_detals_start */

.news_details_sec{
  padding: 65px 0 120px;
}

.nws_dtl_hdr{
  padding: 0 0 60px 30px;
  max-width: 920px;
}

.nws_dtl_hdr span{
  color: #313131;
  margin-bottom: 10px;
  display: block;
}

.nws_dtl_bnr{
  padding-bottom: 65px;
}

.nws_dtl_bnr > img{
  width: 100%;
}

.nws_dtl_cnct {
  max-width: 1005px;
  margin: 0 auto;
}

.nws_dtl_cnct p{
  font-size: 17px;
  line-height: 29px;
  color: #313131;
  margin-bottom: 35px;
}

.nws_dtl_cnct p b{
  font-size: 18px;
  font-weight: 700;
}

.nws_dtl_cnct ul{
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 25px;
  color: #313131;
  max-width: 910px;
}

.nws_dtl_cnct ul li{
  display: flex;
  align-items: baseline;
}

.nws_dtl_cnct ul li:not(:last-child){
  margin-bottom: 15px;
}

.nws_dtl_cnct ul li::before{
  display: inline-block;
  content: "";
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #656565;
  margin-right: 18px;
}

.nws_dtl_cnct h6{
  font-size: 29px;
  letter-spacing: 1px;
  line-height: 29px;
  color: #313131;
  font-weight: 700;
  margin-bottom: 20px;
}

.nws_dtl_cnct .mail_lnk{
  font-size: 18px;
  line-height: 29px;
  color: #6d3eff;
  font-weight: 700;
  position: relative;
}

.nws_dtl_cnct .mail_lnk::before{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6d3eff;
  transition: 400ms all ease-in-out;
}

.nws_dtl_cnct .mail_lnk:hover:before{
  width: 100%;
}

/* news_detals_end */



/* masonary js */

.hwrk_whitebox_wrap{
  column-count: 2;
  column-gap: 0;
  column-fill: balance;
}

.hwrk_whitebox_wrap li{
  max-width: 100%;
  display: inline-block;
  margin: 0 0 56px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  width: 100%;
  padding: 0 15px;
}
/* our team start */
.our_team .crd_img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.our_team .crd_cnct{
  min-height: auto;
  padding: 18px 30px;
}
.our_team .crd_cnct span{
  font-size: 13px;
    line-height: 27px;
    color: #000000;
    font-style: italic;
}
.our_team .news_item {
  padding: 20px 0;
  height: 100%;
}
.our_team{
  padding: 90px 0 110px;
}
/* our team end */
/* 12.06.23 start*/
.bg_img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 60%);
  height: 100%;
  width: 100%;
}
.bnr_cnt h1{
  color: #fff;
}
/* 12.06.23 end */
/* privacy policy page start */
.privacy_plcy{
  padding: 80px 0 100px;
}
.hdng_cnt h2{
  padding-bottom: 20px;
}
.hdng_cnt p{
  padding-bottom: 10px;
}
.prvcy_cnt h4{
  color: #020047;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.hdng_cnt{
  padding-bottom: 40px;
}
.prvcy_cnt h4{
  padding-bottom: 10px;
}
.prvcy_cnt li{
  display: flex;
}
.prvcy_cnt ul {
  max-width: 800px;
  padding: 20px 0 0;
}
.prvcy_cnt li span{
  color: #020047;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-right: 15px;
  width: 15%;
}
.prvcy_cnt li p{
  width: 85%;
}
.prvcy_cnt li:not(:last-child){
  padding-bottom: 15px;
}
.prvcy_cnt p{
  padding-bottom: 10px;
}
.prvcy_inr_cnt{
  padding-bottom: 25px;
}
.privacy_listing{
  list-style-type: lower-alpha;
  list-style: lower-alpha;
  margin-left: 20px;
  max-width: 100% !important;
}
.privacy_listing li{
  display: list-item;
  font-size: 16px;
  line-height: 25px;
  color: #929aa6;
}
.privacy_listing li:not(:last-child){
  padding-bottom: 10px;
}
.privacy_list .nws_dtl_cnct{
  max-width: initial;
  margin-top: 20px;
}
.privacy_list ul li{
  display: list-item;
}
.privacy_list p{
  margin-bottom: 0;
}
.privacy_list .nws_dtl_cnct ul li:not(:last-child) {
  margin-bottom: 0;
}
.pvcy_list_cnt {
  max-width: initial !important;
}
.pvcy_list_cnt li span{
  width: auto;
  margin-right: 15px;
}
.pvcy_list_cnt li p{
  width: auto;
}
/* privacy policy page end */
/* terms of use start */
 .hdng_cnt b{
font-weight: 700;
 }
 .terms_list li{
  justify-content: flex-start;
 }
 .terms_listing {
  padding-top: 0 !important;
}
.privacy_list ul{
  margin-bottom: 0;
}
/* terms of use end */
.privacy_bnr{
  background-color: rgb(109 62 255 / 78%);
  padding: 100px 0 150px;
}
.privacy_bnr h1{
  color: #fff;
}


/*  16_06_2023 -- case study */


.nws_dtl_cnct ul li strong{
  display: contents;
  font-weight: 700;
}
/* 19.06.23 start */
.img-wrp img{
  width: 100%;
}
.news_slider .crd_cnct{
  min-height: 190px;
}
.news_slider .crd_wrp::before{
  position: absolute;
  content: "";
  border-bottom: 55px solid #6d3eff;
  border-left: 50px solid transparent;
  bottom: 0;
  right: 0;
}
/* 19.06.23 end */
/* 20.06.23 start */
.news_sec .news_slider{
  display: flex;
  flex-wrap: wrap;
}
.news_sec .news_slider .news_item{
  flex: 0 0 33.33%;
    max-width: 33.33%;
}
.study_itm_wrp a{
  height: 100%;
}
/* 20.06.23 end*/