/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
* {
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    text-decoration: none;
}


/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 10px;
}

:root {
	--primaryColor: #A5A6FF;
	--sizeRatio: 1rem;
}

html {
	font-size: var(--sizeRatio);
}

.home {
    background: #EFFBF8;
}
body {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Roboto', sans-serif;
    color: #8B8CA6;
}

p {
	font-size: 15px;
}

#leftSidebar {
    background: #fff;
    width: 300px;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 5px 0 40px #130f4917;
    position: sticky;
    top: 0;
	z-index: +99999;
	transition: all 0.4s ease-in-out;
}

.userProfile {
    padding-top: 30px;
}

.userWrap {
    margin-top: 10px;
    position: relative;
}

.userProfile .userName {
    color: #130F49;
    font-size: 16px;
    font-weight: 800;
}

.userProfile .userNameBg {
    color: #d4d4d4;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    width: 100%;
    top: -2px;
    z-index: -1;
    font-family: cursive;
}


.sidebarMeta {
    padding-bottom: 30px;
}

.menu ul li {
    margin-bottom: 12px;
}

.menu ul li:last-child {
    margin-bottom: 0;
}

.menu ul li a {
    font-size: 15px;
    color: #626086;
}

.menu ul li .active {
    color: #A5A6FF;
}

ul.socialIcons {
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 0 20px;
}
ul.socialIcons li:not(:last-child) {
    margin-right: 20px;
}

ul.socialIcons li a {
    background: #F3F3F6;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebarMeta .copyright {
    font-weight: 500;
    color: #626086;
}




.container {
	padding: 50px;
}

#rightContent {
    width: calc(100% - 300px);
}

.homeSection {
    display: flex;
    flex-wrap: wrap;
}

.mainHeading {
    font-weight: 800;
    font-size: 50px;
    color: #130F49;
    line-height: 1.1;
    margin: 0px 0 35px;
}
.highlight {
    color: var(--primaryColor);
}

.rightCol {
    display: flex;
    justify-content: end;
    text-align: center;
}

.buttonWrap {
    margin: 60px 0 90px;
}

.btn {
    padding: 11px 20px;
    background: #130F49;
    display: inline-block;
    color: #fff;
	cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    margin-right: 10px;
	border: 1px solid #130F49;
	transition: all 0.3s;
}

.btn.btn2 {
    color: #130F49;
    background: transparent;
}

.menuContact {
    border-left: 4px solid #FF972D;
    padding-left: 10px;
}

.menuContact ul li {
    margin-bottom: 10px;
    color: #130F49;
    font-size: 15px;
    font-weight: 500;
}

#rightContent .leftCol,
#rightContent .rightCol {
    width: 50%;
}

.userBigImage {
	display: block;
	width: 100%;
}

/* about me */

.left-side {
    width: 35%;
}
.right-side {
    width: 65%;
}

.about {
    display: flex;
    flex-wrap: wrap;
}

.left-side .name {
    color: #130F49;
    font-size: 40px;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 12px;
}

.skills {
    font-size: 16px;
    font-weight: 500;
    color: #130F49;
}
.about .text {
    width: 100%;
    margin-bottom: 40px;
}

.text p {
    margin: 0 0 20px;
    line-height: 1.5;
}

.hightlight {
    color: #FF972D;
    font-weight: 500;
}
.right-side .contacts {
    width: 100%;
}

.right-side .contacts ul li {
    display: inline-grid;
    margin-right: 35px;
    line-height: 1.5;
}

.contacts .cont {
    font-size: 11px;
    font-weight: 500;
}

.contacts .address {
    color: #130F49;
    font-weight: 700;
	font-size: 16px;
}


.se-counter {
    width: 100%;
    margin-bottom: 20px;
}
#counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

#counter li {
    text-align: center;
    height: 170px;
    background: #FAE7D5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	padding: 15px;
}

#counter li:first-child {
    background: #D4F2EB;
}

#counter li:last-child {
    background: #E3F7E0;
}

.counterNumber {
    font-size: 32px;
    font-weight: 600;
    color: #231F55;
    margin-bottom: 15px;
}

.counterTesxt {
    font-size: 15px;
    font-weight: 500;
    color: #231f55;
}
.expCol {
    display: flex;
    width: 100%;
    background: #ECF4FB;
}
.experience {
    width: 100%;
    margin: 50px;
}
.experience span {
    font-size: 12px;
    font-weight: 500;
    color: #65529B;
}
.experience h3 {
    font-size: 36px;
    font-weight: 700;
    color: #15114A;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 40px;
}
#jobRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px 60px;
}
#jobRow .job {
    background: white;
    padding: 25px;
}
.job .hightlight {
    color: #FF972D;
    font-weight: 500;
}
.job h3 {
    font-size: 20px;
    font-weight: 700;
    color: #15114A;
    margin: 8px 0px 10px 0px;
}

#jobRow .job .place {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
}





/* services style */

#serviceSec {
    margin: 0;
}
#external {
    width: 100%;
}
#external .externalrow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}
.rowCol {
    background: white;
}
.externalrow .rowCol {
    padding: 25px;
    border: 1px solid #D2D2D2;
    border-radius: 5px;
}
.rowCol .place .hightlight {
    font-size: 18px;
    color: #8987A4;
}
.rowCol h2 {
    font-size: 22px;
    font-weight: 600;
    color: #130F49;
    margin: 12px 0px 12px 0px;
}
.readMore {
    font-size: 15px;
    font-weight: 400;
    color: #130F49;
    margin: 25px 0px 10px 0px;
}
.readMore a img {
    margin: 0px 0px -2px 15px;
}

.videotm {
    width: 100%;
    margin: 50px 0 0;
    position: relative;
}

.videotm .placeholder {
    width: 100%;
    height: 500px;
	display: block;
    object-fit: cover;
	border-radius: 10px;
}

.videotm .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.videotm .overlay .play {
    width: 50px;
    height: 50px;
    display: block;
}

.videotm .overlay .text {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
}


.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    background: #00000059;
}

.popup.active {
	display: flex;
}






/* portfolio style*/

.portfolioList {
width: 100%;
    margin-top: 40px;
    margin-bottom: 120px;
}

.portfolioHeadSec {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0;
}

.portfolioHeadSec .experience {
    width: auto;
	margin: 0;
}

.portfolioHeadSec .experience h3 {
    margin-top: 10px;
    margin-bottom: 0;
}
.portfolioHeadSec .buttons a {
    width: 49px;
    height: 49px;
    border-radius: 100%;
    border: 1px solid #130f49;
    display: inline-block;
    margin-right: 12px;
    position: relative;
}
.portfolioHeadSec .buttons img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 9px;
    height: 9px;
}
ul.porList {
    width: 100%;
}
.portfolioList .owlItem {
    padding: 0 10px;
}
.portfolioList .details {
    width: 100%;
}
.details .category {
    font-size: 15px;
    font-weight: 500;
}
.listInner .image img {
    border-radius: 15px;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.details .title {
    font-size: 24px;
    font-weight: 700;
    padding-top: 20px;
}
.portfolioList .buttonWrap {
    text-align: center;
}
.portfolioList .btn {
    font-size: 17px;
    padding: 14px 25px;
}

.experience.clients {
    margin: 0;
    margin-bottom: 80px;
}

.clients h3 {
    margin-top: 10px;
}

.partnersInner {
    overflow: hidden;
}

.partnersInner ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
    overflow: hidden;
    margin-right: -3px;
    margin-bottom: -2px;
}

.partnersInner li {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e7e7e7;
    margin-top: -2px;
    margin-left: -2px;
}
.tm_content {
    width: 100%;
    background-color: #fff5f6;
    padding: 4rem 8rem;
    margin-top: 50px;
}
.tm_title {
    width: 100%;
    text-align: center;
}
.tm_title span {
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    color: #626086;
}
.tm_title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #130F49;
}
.jobTitle {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}
.jobTitle li {
    display: inline;
}
.jobTitle .text {
    margin-bottom: 35px;
}

.tm_content .text p {
    font-size: 1rem;
    line-height: 2em;
}

.tm_content .short {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.tm_content .jobDetail {
    text-align: left;
    padding-left: 18px;
}
.tm_content .jobDetail h3 {
    font-size: 30px;
    font-weight: 500;
    color: #130F49;
}
.tm_content .short img {
    width: 60px;
    height: 60px;
}




/* blog style */

.container .experience {
    margin: 0;
}
.blogwgrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}


.blogwgrap .leftBlog {
    padding-right: 50px;
    width: 40%;
}
.blogwgrap .rightBlog {
    width: 60%;
    padding-left: 60px;
}

.rightBlog .listBlog {
    width: 100%;
    position: relative;
}
.listBlog ul {
    margin: 0;
}
.calender-icon {
    width: 20px;
    height: 20px;
    fill: #8b8ca6;
}
.blogwgrap .listBlog ul li {
    width: 100%;
    margin-bottom: 42px;
}
.blogwgrap .listBlog ul li .listBox {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blogwgrap .listBox .info {
    width: 50%;
}
.blogwgrap .listBox .learn {
    width: auto;
}
.info .meta {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.info .meta span {
    font-size: 16px;
    font-weight: 500;
    padding-left: 8px;
}
.info .blogTitle h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}
.info .blogTitle h3 a {
    color: #130f49;
}
.listBox .learn .lineEffect {
    font-size: 16px;
    font-weight: 600;
    color: #130f49;
}
.listBox .learn .lineEffect span {
    padding-left: 8px;
}

.sticky-left {
    position: sticky;
    top: 50px;
}




/* contacts style */

.homeBackground {
    background: #E9F9FF;
}
.contact-form {
    width: 100%;
    display: flex;
	flex-wrap: wrap;
}
.contact-form .left-contact {
    width: 50%;
    padding-right: 50px;
}
.contact-form .right-contact {
    width: 50%;
    padding-left: 50px;
}
#contactForm .formFirst {
    width: 100%;
}
.formFirst .form-input {
    margin-bottom: 20px;
    padding: 0;
}
.form-control {
    width: 100%;
    height: 50px;
    border: 1px solid #130f49;
    border-radius: 5px;
    background: #fff;
	padding: 12px 20px;
    display: block;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
	font-family: inherit;
}

.form-input textarea {
	width: 100% !important;
    height: 150px;
	max-height: 250px;
	min-height: 100px;
}

.btn:hover {
  background-color: #fff;
  color: #130F49;
}

.btn.btn2:hover {
	background: #130F49;
	color: #fff;
}

#reachMap {
    width: 100%;
	margin: 50px 0 0;
}



/* Modal */

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: +9999;
	display: none;
	align-items: center;
    justify-content: center;
}

.modal.active {
	display: flex;
}

.modal .modal-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.6;
    z-index: -1;
}

.modal .modal-inner {
    background: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: 5px;
    height: 100%;
    max-height: 70vh;
	position: relative;
}
.modal-content .text {
    margin-top: 20px;
}
.modal-content .text p {
    margin-bottom: 8px;
}
.modal-content {
    width: 100%;
    height: 100%;
    padding: 40px;
    overflow-y: scroll;
}
.modal-content .modalImage {
    position: relative;
    margin-bottom: 30px;
}
.modalImage .bigImage {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 4px;
	object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 0;
    right: -60px;
	z-index: 2;
}

.modal-close a {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid #fff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    fill: #fff;
	transition: all 0.3s;
}

.modal-close a:hover {
	border-radius: 50px;
}

ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0;
}

ul.slick-dots>li {
    margin: 0 8px;
}

ul.slick-dots button {
    font-size: 0;
    line-height: normal;
    padding: 0;
    width: 15px;
    height: 15px;
    display: block;
    margin: 0;
    border-radius: 50%;
    outline: none;
    border: none;
    background: #cec5c9;
	cursor: pointer;
	transition: all 0.3s;
}

ul.slick-dots .slick-active button {
    box-shadow: 0 0 0 3px #fff5f6, 0 0 0 4.5px #5d3bee;
	background: #5d3bee;
}

/* Mobile Menu */

#mobMenu {
    position: absolute;
    right: 20px;
    top: 20px;
	display: none;
	cursor: pointer;
	z-index: +999;
}

.menu-open #leftSidebar {
    left: 0;
}


/* Responsive */

@media only screen and (max-width: 1025px) {

.rightCol {
    display: block;
}

.mainHeading {
    font-size: 36px;
}

.contacts ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin: 0 0 40px;
}

.right-side .contacts ul li {
    margin-right: 0;
}

#external .externalrow {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.videotm .placeholder {
    height: 60vh;
}
.left-side .name {
    font-size: 32px;
}
.experience h3 {
    font-size: 24px;
}
#jobRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 40px;
}

.details .title {
	font-size: 20px;
}

.tm_content .short img{
	width: 50px;
	height:50px;
}
.tm_content .jobDetail h3{
	font-size:22px;
}
.info .blogTitle h3{
	font-size:18px;
}
.calender-icon {
    width: 18px;
    height: 18px;
}
info .meta span {
    font-size: 14px;
}
.listBox .learn .lineEffect {
    font-size: 14px;
}



}


@media only screen and (max-width: 821px) {

:root {
	--sizeRatio: 0.8rem;
}
 
#leftSidebar {
	width: 250px;
}
#rightContent {
    width: calc(100% - 250px);
}
.userBigImage {
    margin-left: 20px;
}
.mainHeading {
    font-size: 22px;
}
.leftCol p {
    font-size: 16px;
}

.menuContact ul li{
    font-size: 12px;
}

.contacts .cont{
	font-size: 10px;
}
.contacts .address{
	font-size: 12px;
}
#counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}
#counter li {
    height: 130px;
    padding: 12px
}
.counterNumber {
    font-size: 24px;
    margin-bottom: 12px;
}
.counterTesxt {
    font-size: 13px;
}
#jobRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 22px;
}
.experience span {
    font-size: 15px;
}
.experience h3 {
    font-size: 20px;
}
#jobRow .job {
    padding: 12px;
}
.text p {
    margin: 0 0 10px;
    line-height: 1.2;
}
#external .externalrow {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}
.rowCol .place .hightlight {
    font-size: 15px;
}
.rowCol h2 {
    font-size: 20px;
}
.readMore {
    font-size: 12px;
}
.externalrow .rowCol {
    padding: 15px;
}
.videotm .placeholder {
    height: 40vh;
}
.portfolioHeadSec .buttons a {
    width: 38px;
    height: 38px;
}
.portfolioHeadSec .buttons a:last-child {
	margin: 0;
}
.portfolioHeadSec .buttons img {
    width: 7px;
    height: 7px;
}
.details .category {
    font-size: 12px;
}
.details .title {
    font-size: 14px;
}
.portfolioList .btn {
    font-size: 12px;
    padding: 12px 20px;
}
.buttonWrap {
    margin: 60px 0 50px;
}
.portfolioList {
    margin-bottom: 50px;
}
.partnersList a img {
    width: 60px;
}
.partnersInner li {
    height: 100px;
}
.tm_title span {
    font-size: 12px;
}
.tm_content .short img {
    width: 40px;
    height: 40px;
}
.tm_content .jobDetail h3 {
    font-size: 15px;
}
tm_content .jobDetail {
    padding-left: 10px;
}
ul.slick-dots {
    margin: 22px 0 0;
}
.tm_content {
    padding: 4rem 2rem;
}
.jobTitle .text {
    margin-bottom: 20px;
}
ul.slick-dots button {
    width: 12px;
    height: 12px;
}
ul.slick-dots .slick-active button {
    box-shadow: 0 0 0 2px #fff5f6, 0 0 0 4px #5d3bee;
    background: #5d3bee;
}
.blogwgrap .rightBlog {
    padding-left: 0px;
}
.blogwgrap .leftBlog {
    padding-right: 0px;
}
.info .meta span {
    font-size: 12px;
}
.calender-icon {
    width: 15px;
    height: 15px;
}
.info .blogTitle h3 {
    font-size: 14px;
    line-height: 20px;
}
.listBox .learn .lineEffect {
    font-size: 12px;
}
.lineEffect svg {
    width: 12px;
    height: 12px;
}
.form-control {
    height: 34px;
}
.form-input textarea {
    height: 100px;
}
.form-control {
    padding: 10px 10px;
    font-size: 12px;
}
.formFirst .form-input {
    margin-bottom: 12px;
    padding: 0;
}.formFirst .form-input {
    margin-bottom: 12px;
}


}






@media only screen and (max-width: 521px) {

#leftSidebar {
    left: -260px;
    position: fixed;
}

#rightContent {
    width: 100%;
}

#mobMenu {
	display: block;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

#rightContent .leftCol, #rightContent .rightCol {
    width: 100%;
}

.homeSection .rightCol {
    order: -1;
    margin: 0 0 25px;
}


.mainHeading {
    font-size: 9vw;
}

.userBigImage {
    margin: 0 auto;
    width: 70%;
}

.portfolioList .porList {
    grid-template-columns: 100%;
}

.listInner .image img {
    max-height: 260px;
    object-fit: cover;
}

.partnersInner ul {
    grid-template-columns: repeat(2, 1fr);
}

.blogwgrap .leftBlog,
.blogwgrap .rightBlog {
    width: 100%;
}

.sticky-left {
    position: static;
}

.contact-form .left-contact,
.contact-form .right-contact {
    width: 100%;
    padding: 0;
}

#contactForm .formFirst {
    margin: 20px 0 0;
}

.experience {
    margin-left: 20px;
    margin-right: 20px;
}

#jobRow {
    grid-template-columns: 100%;
}
.leftCol p {
    font-size: 16px;
}

.menuContact ul li {
    font-size: 14px;
}
.left-side {
    width: 100%;
}
.right-side {
    width: 100%;
}
.buttonWrap {
    margin: 30px 0 25px;
}
.right-side .contacts ul li {
    display: block;
    margin-right: 0px;
    line-height: 1.2;
}
.contacts .cont {
    font-size: 12px;
}
.contacts .address {
    font-size: 14px;
}
.contacts .address {
    font-size: 14px;
    margin: 0 0px 0px 2px;
}
.about .text {
    margin-bottom: 30px;
}

#counter {
    grid-template-columns: repeat(2, 1fr);
}

#counter li:last-child {
    grid-column: auto / span 2;
}
#external .externalrow {
    grid-template-columns: 100%;
    grid-gap: 15px;
}
.details .category {
    font-size: 16px;
}
.details .title {
    font-size: 18px;
}
.tm_title span {
    font-size: 14px;
}
.calender-icon {
    width: 18px;
    height: 18px;
}
.info .meta span {
    font-size: 15px;
}
.info .blogTitle h3 {
    font-size: 18px;
    line-height: 20px;
}
.listBox .learn .lineEffect {
    font-size: 14px;
}
.lineEffect svg {
    width: 14px;
    height: 14px;
}

}


























