/*------------------------------------------------------------------
Project:  Pato
Version:  
Last change:  
Assigned to:  Kevin Nguyen
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

@import url('https://fonts.googleapis.com/css?family=Courgette');

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700');

@import url('https://fonts.googleapis.com/css?family=Noto+Sans');

@font-face {
  font-family: Montserrat-Regular;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

@font-face {
  font-family: Courgette-Regular;
  src: url('../fonts/courgette/Courgette-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Light;
  src: url('../fonts/poppins/Poppins-Light.ttf'); 
}

@font-face {
  font-family: NotoSans-Regular;
  src: url('../fonts/notosans/NotoSans-Regular.ttf'); 
}



/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Montserrat, sans-serif;
  font-weight: 400;
}

/* ------------------------------------ */
a {
	font-family: Montserrat;
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
	color: #fff;
}

/* ------------------------------------ */
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Montserrat;
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/* ------------------------------------ */
input {
	outline: none;
	border: none !important;
}

textarea {
  outline: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
  box-shadow: 0 0 0px 2px #8f78fd;
  -moz-box-shadow: 0 0 0px 2px #8f78fd;
  -webkit-box-shadow: 0 0 0px 2px #8f78fd;
  -o-box-shadow: 0 0 0px 2px #8f78fd;
  -ms-box-shadow: 0 0 0px 2px #8f78fd;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #aaaaaa; }
input:-moz-placeholder { color: #aaaaaa; }
input::-moz-placeholder { color: #aaaaaa; }
input:-ms-input-placeholder { color: #aaaaaa; }

textarea::-webkit-input-placeholder { color: #aaaaaa; }
textarea:-moz-placeholder { color: #aaaaaa; }
textarea::-moz-placeholder { color: #aaaaaa; }
textarea:-ms-input-placeholder { color: #aaaaaa; }

/* ------------------------------------ */
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/* ------------------------------------ */
.container {
	max-width: 1200px;
}

.slick-slide {
  outline: none !important;
}

/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/

.animsition-loading-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cp-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    box-sizing: border-box;
    position: relative
}

.cp-meter {
    border-radius: 50%;
    border-top: solid 6px #8f78fd;
    border-right: solid 6px #8f78fd;
    border-bottom: solid 6px #8f78fd;
    border-left: solid 6px #8f78fd;
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box
}

.cp-meter:before {
    border-radius: 3px;
    content: " ";
    width: 6px;
    height: 12px;
    display: inline-block;
    box-sizing: border-box;
    background-color: #8f78fd;
    position: absolute;
    top: 5px;
    left: 16px;
    transform-origin: center bottom;
    animation: cp-meter-animate-before 1s linear infinite
}

@keyframes cp-meter-animate-before {
    0% {
        transform: rotate(-45deg)
    }

    100% {
        transform: rotate(315deg)
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
.btn-back-to-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 40px;
  right: 40px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 22px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}


/*[ Calendar ]
///////////////////////////////////////////////////////////
*/
td.active {
  background-color: #8f78fd !important;
}

input[type="date" i] {
  padding: 14px;
}

.table-condensed td, .table-condensed th {
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 400;
}
.daterangepicker {
    width: 339px;
    box-shadow: 0px 3px 25px rgba(0,0,0,0.1);
    border: none;
    margin-top: 10px;
}
.daterangepicker .calendar {
  max-width: inherit;
}
.daterangepicker thead tr th {
  padding: 10px 0;
}
.daterangepicker .table-condensed th select {
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 15px;
  padding: 5px;
}
.daterangepicker td {
    width: 60px;
    height: 35px;
}



/*[ Select2 ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

/*[ width select ]
===========================================================*/
.select2-container {
  display: block;
    max-width: 100%;
    width: auto !important;
}

/*[ Select ]
===========================================================*/
.select2-container .select2-selection--single {
  display: flex;
  align-items: center;
    background-color: white;
    border: 0px solid transparent;
    border-radius: 10px !important;
    height: 46px;
    outline: none;
}

.select2-container--focus {
  border-radius: 10px;
  box-shadow: 0 0 0px 2px #8f78fd;
  -moz-box-shadow: 0 0 0px 2px #8f78fd;
  -webkit-box-shadow: 0 0 0px 2px #8f78fd;
  -o-box-shadow: 0 0 0px 2px #8f78fd;
  -ms-box-shadow: 0 0 0px 2px #8f78fd;
}

.select2-container--focus .select2-selection--single {
  border-color: transparent;
}

.select2-container--below.select2-container--open {
  border-radius: 10px;
  box-shadow: 0 0 0px 2px #8f78fd;
  -moz-box-shadow: 0 0 0px 2px #8f78fd;
  -webkit-box-shadow: 0 0 0px 2px #8f78fd;
  -o-box-shadow: 0 0 0px 2px #8f78fd;
  -ms-box-shadow: 0 0 0px 2px #8f78fd;
}

.select2-container--below.select2-container--open .select2-selection--single {
  border-color: transparent;
}

.select2-container--above.select2-container--open {
  border-radius: 10px;
  box-shadow: 0 0 0px 2px #8f78fd;
  -moz-box-shadow: 0 0 0px 2px #8f78fd;
  -webkit-box-shadow: 0 0 0px 2px #8f78fd;
  -o-box-shadow: 0 0 0px 2px #8f78fd;
  -ms-box-shadow: 0 0 0px 2px #8f78fd;
}

.select2-container--above.select2-container--open .select2-selection--single {
  border-color: transparent;
}


/*[ in select ]
===========================================================*/
.select2-selection__rendered {
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 400;
  color: #666666 !important;
  padding-left: 20px !important;
} 

.select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 12px !important;
}


/*[ dropdown option ]
===========================================================*/
.select2-dropdown {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0px 3px 25px rgba(0,0,0,0.1);
    margin-top: 7px;
}
.select2-dropdown--above {top: -2px;}
.select2-dropdown--below {top: 2px;}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: #8f78fd;
  color: #fff;
}

.select2-results__options{
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 400;
  color: #666666 !important;
}


.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa !important;
  outline: none;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
}

.select2-search--dropdown .select2-search__field:focus {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
}



/*[ Header ]
///////////////////////////////////////////////////////////
*/

.wrap-menu-header {
  position: absolute;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 100;
}

.wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  background-color: transparent;
  justify-content: space-between;
  align-items: center;
}

.header-fixed .wrap-menu-header {
  position: fixed;
  height: 100px;
     background: rgba(0, 0, 0, 0.81);
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

/*[ Logo ]
-----------------------------------------------------------
*/
.logo {
  height: 80px;
}

.logo > a{
  display: block;
  height: 100%;
}

.logo > a > img {
  width: auto;
  max-height: 100%;
  vertical-align: middle;
}


/*[ Menu ]
-----------------------------------------------------------
*/
.wrap_menu {
  height: 100%;
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.main_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_menu li {
  display: block;
  position: relative;
}

.main_menu > li {
  padding-top: 10px;  
  padding-bottom: 10px; 
  margin-left: 10px;
  margin-right: 10px;
}

.main_menu > li > a {
  font-family: Montserrat;
    font-size: 16px;
    color: white;
        padding: 5px 10px 3px;

}

.header-fixed .main_menu > li > a {
  color: #fff;
}

.main_menu > li:hover > a {
  color: #8f78fd;
      border-bottom: 2px solid #8f78fd;
  text-decoration: none;
}

/* ------------------------------------ */
.sub_menu {
  position: absolute;
  top:0;
  left: 100%;
  width: 225px;
  background-color: white;

  transform-origin: top left;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.34; 
}

.main_menu > li > .sub_menu {
  top:100%;
  left: 0;
  position: absolute;
}

.main_menu > li:hover .sub_menu {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.sub_menu li:hover > .sub_menu {
  display: block;
} 

.sub_menu li {
  background-color: #f2f2f2;
  border-top: 1px solid #e0e0e0; 
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.sub_menu li:hover {
  background-color: white;
}

.sub_menu li, .sub_menu a {
  padding: 10px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: #808080;
}

.sub_menu > li:hover > a {
  color: #555555;
  text-decoration: none;
}


/*[ Social ]
-----------------------------------------------------------
*/
.social a {
  font-size: 15px;
  color: white;
}

.header-fixed .social a {
  color: #222222;
}

.social a:hover {
  color: #8f78fd;
}

@media (max-width: 400px) {
.btn-show-sidebar {
  display: none;
}
}
@media (max-width: 401px) {
.btn-show-sidebar {
  display: block;
  width: 26px;
  height: 15px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}
}
.header-fixed .btn-show-sidebar {
  border-top: 2px solid #222222;
  border-bottom: 2px solid #222222;
}

.btn-show-sidebar:hover {
  border-top: 2px solid #8f78fd;
  border-bottom: 2px solid #8f78fd;
}

@media (max-width: 1200px) {
  .main_menu > li {
    margin-left: 4px;
    margin-right: 4px;
  }

  .social {padding-right: 0px;}

  .logo {
    height: 45px;
  }
}

@media (max-width: 992px) {
  .wrap_menu {
    display: none;
  }

  .wrap_header {
    height: 100px;
  }
}




/*[ Sidebar ]
///////////////////////////////////////////////////////////
*/
.sidebar {
  position: fixed;
  z-index: 1200;
  width: 390px;
  height: 100%;
  overflow: auto;
  background-color: #8f78fd9c;
  top: 0;
  right: -390px;
}

@media (max-width: 576px) {
  .sidebar {width: 300px;}
}

.show-sidebar {
  right: 0px;
}

.btn-hide-sidebar {
  position: absolute;
  font-size: 20px;
  color: #fff;
  padding: 10px;
  top: 20px;
  right: 20px;
}

.overlay-sidebar {
  position: fixed;
  z-index: 1150;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
}

.show-overlay-sidebar {
  visibility: visible;
  background-color: rgba(0,0,0,0.65);
}

/* ------------------------------------ */
.item-gallery-sidebar {
  display: block;
  position: relative;
  width: calc((100% - 30px) / 3 );
  margin: 5px;
}

.item-gallery-sidebar::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-sidebar:hover:after {
  background-color: rgba(236,29,37,0.7);
}

@media (max-width: 576px) {
  .wrap_header {
    height: 80px;
  }

  .gallery-sidebar {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1,
.wrap-slick2,
.wrap-slick3 {
  position: relative;
}

.item-slick1,
.item-slick2,
.item-slick3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.item-slick1 {
  height: 100vh;
}

.arrow-slick1, .arrow-slick2, .arrow-slick3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 18px;
  color: white;
  position: absolute;
  background-color: black;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1,
.wrap-slick2:hover .arrow-slick2,
.wrap-slick3:hover .arrow-slick3 {
  opacity: 0.5;
}

.arrow-slick1:hover,
.arrow-slick2:hover,
.arrow-slick3:hover {
  background-color: #8f78fd;
}

.next-slick1,
.next-slick2,
.next-slick3 {
  right: 50px;
  left: auto;
}

.prev-slick1,
.prev-slick2,
.prev-slick3 {
  left: 50px;
  right: auto;
}

@media (max-width: 576px) {
  .next-slick1 {
    right: 15px;
  }

  .prev-slick1 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick1-dots {
  position: absolute;
  width: 100%;
  height: 65px;
  left: 0;
  bottom: 0;
}

.slick1-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick1-dots li {
  padding-left: 3px;
  padding-right: 3px;
}

.slick1-dots li button {
  display: block;
  color: transparent;
  background-color: #958e88;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick1-dots li button:hover {
    border: 3px solid white;
    background-color: #8f78fd;
}

.slick1-dots li.slick-active button {
    border: 3px solid white;
    background-color: #8f78fd;
} 

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 768px) {
  .wrap-content-slide1 .tit1 {
    font-size: 70px;
  }

  .wrap-content-slide1 .txt1 {
    font-size: 60px;
  }
}

@media (max-width: 576px) {
  .wrap-content-slide1 .tit1 {
    font-size: 20px;
  }

  .wrap-content-slide1 .txt1 {
    font-size: 25px;
  }
}


/*[ Button1 ]
///////////////////////////////////////////////////////////
*/
.btn1 {
  background: white;
  border-radius: 10px;
}

.btn1:hover {
  background-color: #8f78fd;
  color: white;
}

/*[ Button3 ]
///////////////////////////////////////////////////////////
*/
.btn3 {
  background: #111111;
  border-radius: 10px;
}

.btn3:hover {
  background-color: #8f78fd;
  color: white;
}


/*[ Button2 ]
///////////////////////////////////////////////////////////
*/
.btn2 {
  background-color: white;
  border-radius: 10px;
  opacity: 0.9;
}

.btn2:hover {
  background-color: #8f78fd;
  color: white;
}




/*[ Intro ]
///////////////////////////////////////////////////////////
*/
.header-intro {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}



/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/

.arrow-slick2 {
  top: 53%;
}


@media (max-width: 576px) {
  .next-slick2 {
    right: 15px;
  }

  .prev-slick2 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick2-dots {
  position: absolute;
  width: 100%;
  height: 128px;
  left: 0;
  bottom: 0;
}

.slick2-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick2-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick2-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick2-dots li button:hover {
  border: 1px solid #8f78fd;
  background-color: #8f78fd;
}

.slick2-dots li.slick-active button {
  border: 1px solid #8f78fd;
  background-color: #8f78fd;
} 


/*[ Slide3 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick3 ]
-----------------------------------------------------------
*/


.arrow-slick3 {
  top: 40%;
}


@media (max-width: 576px) {
  .next-slick3 {
    right: 15px;
  }

  .prev-slick3 {
    left: 15px;
  }
}

/* ------------------------------------ */
.wrap-slick3-dots {
  width: 100%;
  height: 128px;
}

.slick3-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.slick3-dots li {
  padding-left: 5px;
  padding-right: 5px;
}

.slick3-dots li button {
  display: block;
  color: transparent;
  background-color: #cccccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-clip: padding-box;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.slick3-dots li button:hover {
  border: 1px solid #8f78fd;
  background-color: #8f78fd;
}

.slick3-dots li.slick-active button {
  border: 1px solid #8f78fd;
  background-color: #8f78fd;
} 





/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.blo2 {
  border-radius: 10px;
  overflow: hidden;
}

.wrap-pic-blo2 {
  display: block;
  width: 50%;  
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrap-text-blo2 {
  background-color: white;
  width: 50%;
  min-height: 390px;
}

/* ------------------------------------ */
.effect1 {
  background-color: #cf2227;
  opacity: 0.9;
  position: relative;
}
.effect1 .txt-effect1 {
  width: 390px;
  height: 50px;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(90deg);
  -moz-transform: translate(-50%, -50%) rotateZ(90deg);
  -ms-transform: translate(-50%, -50%) rotateZ(90deg);
  -o-transform: translate(-50%, -50%) rotateZ(90deg);
  transform: translate(-50%, -50%) rotateZ(90deg);
}

@media (max-width: 992px) {
  .blo2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 390px;
  }

  .wrap-text-blo2 {
    width: 100%;
    min-height: 390px;
  }

  .time-event {
    width: 100%;
    height: auto;
  }

  .effect1 .txt-effect1 {
    width: 100%;
    height: 50px;
    padding: 10px;
    transform-origin: center center;
    position: unset;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
}

@media (max-width: 576px) {
  .blo2 {
    width: 100%;
  }

  .wrap-pic-blo2 {
    width: 100%;
    height: 364px;
  }

}


/*[ Video ]
///////////////////////////////////////////////////////////
*/
.section-img01 {
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-video {
  background-color: rgba(0,0,0,0.5);
}

/*[ Modal video 01 ]
-----------------------------------------------------------
*/
body {padding-right: 0px !important;}
.modal {
  padding: 0px !important;
  z-index: 1160;
  overflow-x: hidden;
  overflow-y: auto !important;
}
.modal-open {overflow-y: scroll;}

/* ------------------------------------ */
.modal-backdrop {
  background-color: transparent;
}

#modal-video-01 {
  background-color: rgba(0,0,0,0.8);
  z-index: 1250;
  
}

#modal-video-01 .modal-dialog {
  max-width: 100% !important;
  height: 100% !important;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}



/*[ Blog ]
///////////////////////////////////////////////////////////
*/
.time-blog {
  position: absolute;
  left: 14px;
  bottom: 11px;
  background-color: rgba(0,0,0,0.5);
  padding: 3px 15px;

  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  color: white;
  border-radius: 4px;

}


/*[ Gallery footer ]
///////////////////////////////////////////////////////////
*/
.item-gallery-footer {
  display: block;
  position: relative;
  width: calc((100% - 50px) / 4 );
  margin-right: 10px;
  margin-bottom: 10px;
}

.item-gallery-footer::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.item-gallery-footer:hover:after {
  background-color: rgba(236,29,37,0.7);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  min-height: 545px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}
.bg-title-page-img {
  width: 100%;
  min-height: 400px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}

@media (max-width: 576px) {
  .bg-title-page .tit6 {font-size: 30px;}
}



/*[ Item mainmenu ]
///////////////////////////////////////////////////////////
*/

.line-item-mainmenu {
  flex-grow: 1;
  height: 2px;
  margin-bottom: 5px;
  margin-right: 10px;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .line-item-mainmenu {
    display: none;
  }

  .price-item-mainmenu {
    padding-top: 5px;
  }

  .name-item-mainmenu {
    width: 100%;
  }
}


/*[ Block3 ]
///////////////////////////////////////////////////////////
*/

@media (max-width: 576px) {
  .text-blo3 {
    width: 100%;
  }
}



/*[ Gallery ]
///////////////////////////////////////////////////////////
*/

.label-gallery {
  border-radius: 10px;
  padding: 2px 11px;
  margin: 5px 0;
}

.label-gallery:hover {
  background-color: #111111;
  color: white;
}

.is-actived {
  background-color: #111111;
  color: white;
}

/* ------------------------------------ */
.wrap-gallery {
  width: 100%;
  box-sizing: border-box;
}

.item-gallery {
  width: calc( (100% - 140px) / 3 ) ;
  margin: 30px 15px;
  position: relative;
}

.overlay-item-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(236,29,37,0.8);
  opacity: 0;
}

.overlay-item-gallery:hover {
  opacity: 1;
}

.btn-show-gallery {
  font-size: 18px;
  color: #222222;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
}

@media (max-width: 768px) {
  .item-gallery {
    width: calc((100% - 110px) / 2);
  }
}

@media (max-width: 576px) {
  .item-gallery {
    width: calc((100% - 30px) / 1);
  }
  .wrap-gallery {
    padding-left: 0;
    padding-right: 0;
  }
}


/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.item-pagination {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 13px;
  color: #808080;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  margin: 6px;
}

.item-pagination:hover {
  background-color: #333333;
  color: white;
}

.active-pagination {
  background-color: #333333;
  color: white;
}



/*[ Sidebar2 ]
///////////////////////////////////////////////////////////
*/

/*[ Search sidebar2 ]
-----------------------------------------------------------
*/
.btn-search-sidebar2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background-color: #333333;
  color: white;
  font-size: 18px;

  box-shadow: 0 0 0px 1px #333333;
  -moz-box-shadow: 0 0 0px 1px #333333;
  -webkit-box-shadow: 0 0 0px 1px #333333;
  -o-box-shadow: 0 0 0px 1px #333333;
  -ms-box-shadow: 0 0 0px 1px #333333;

  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.btn-search-sidebar2:hover {
  color: #8f78fd;
}

.input-search-sidebar2 {
  width: 100%;
  height: 100%;
}



/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.date-blo4 {
  width: 75px;
  height: 82px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 10px;
  background-color: #8f78fd;
}
.img-div-poj
{
       margin-left: 123px;
    background: #fffcfc;
    padding: 77px;
    margin-right: 123px;
}
.img-div-poj h1
{
    padding-bottom: 40px;
    font-weight: bold;
    text-align: center;
}
.img-div-poj p
{
 font-size: 20px;
  text-align: center; 
  padding-bottom: 30px;
}
@media only screen and (max-width: 600px) {
.img-div-poj
{
      margin-left:0px;
    padding: 40px;
    margin-right: 0px;
}
}

.section-img
{
      background-image: url(../images/main-info-bg.jpg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
}
.bbtn
{
         border: 2px solid #000000;
    font-size: 18px;
    padding: 8px 15px;
    margin-left: 324px;
    color: #000;
    font-weight: bold;
}
.bbtn:hover
{
   background: #8f78fd;
     border: 2px solid #8f78fd; 
     transition: all .6s ease;
     color: #fff;
}
@media only screen and (max-width: 600px) {
.bbtn
{
    margin-left: 70px;
}
}
.div-position
{
    text-align: center;
    margin-top: 40px;
    box-shadow: 0px 0px 20px 0px #bbb;
    padding: 35px 16px;
        padding-bottom: 37px;
}
.div-position h2
{
    font-size: 20px; 
    font-weight: bold;
    line-height: 30px;
}
.p-text
{
         font-size: 17px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.p-text-2
{
         font-size: 17px;
    margin-top: 25px;
    margin-bottom: 53px;
}
.abtn
{
      border: 2px solid #000;
    padding: 8px 15px;
    font-size: 17px;
    color: #000;
    font-weight: bold;
}
.abtn:hover
{
     background: #8f78fd;
     border: 2px solid #8f78fd; 
     transition: all .6s ease;
     color: #fff;
}
.img-section-1
{
   background-image: url(../images/backimg.jpg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
}

.margin-class
{
  margin-top: 175px;
}
@media only screen and (max-width: 600px) {
.margin-class
{
  margin-top: 0px;
}
}

.section-img104
{
      background-image: url(../images/backimg.jpg);
    background-position: center;
    background-size: cover;
}
.section-position
{
      margin-left: 110px;
}
@media only screen and (max-width: 600px) {
.section-position
{
      margin-left: 0px;
}
}
.section-margin
{
      margin-left: 40px;
        background: #2b3437;
    margin-top: 40px;
    padding: 70px 40px 40px;
    text-align: center;
}
@media only screen and (max-width: 600px) {
.section-margin
{
      margin-left: 0px;
      margin-right: 14px;
}
}
.section-margin01
{
       background: #2b3437;
    margin-top: 46px;
    padding: 70px 40px 40px;
    text-align: center;
}
.section-margin01:hover 
{
       background: #8f78fd;
}
@media only screen and (max-width: 600px) {
.section-margin01
{
    margin-right: 14px;
}
}
.section-margin02
{
       background: #2b3437;
    margin-top: 40px;
    padding: 70px 40px 40px;
    text-align: center;
}
@media only screen and (max-width: 600px) {
.section-margin02
{
    margin-right: 14px;
}
}
.text-section0
{
  margin-top: 25px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.class-4 h3, .class-5 h3
{
      color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.a-class a
{
      color: #2b3437;
    font-weight: bold;
    font-size: 15px;
}
@media only screen and (max-width: 600px) {
.a-class a
{
      color: #fff;
}
}
.section-margin01:hover .a-class a
{
  color: #fff;
}

.section-margin01 .class-4 h2
{
  color: #8f78fd;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 24px;
}

.section-margin01:hover .class-4 h2
{
  color: #000;
}


.a-class1 a
{
  color: #2b3437;
    font-weight: bold;
    font-size: 15px;
}
@media only screen and (max-width: 600px) {
.a-class1 a
{
  color: #fff;

}
}

.section-margin:hover 
{
       background: #8f78fd;
}

.section-margin:hover .a-class1 a
{
  color: #fff;
}

.section-margin .class-5 h2
{
  color: #8f78fd;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 24px;
}

.section-margin:hover .class-5 h2
{
  color: #000;
}

.img-bott img
{
  width: 94%;
    margin: 0 3%;
    margin-top: -26px;
}

@media only screen and (max-width: 600px) {
.img-bott img
{
     width: 84%;
    margin: 0px 8%;
    margin-top: -14px;
}
}

.culture-content-grid
{
       background-color: #8f78fd;
    padding: 48px;
    position: relative;
    z-index: 2;
    left: -20px;
}

.culture-content-grid::before {
       background-color: #222222;
    content: "";
    display: block;
    height: 100%;
    left: 20px;
    position: absolute;
    top: 10px;
    width: 100%;
    z-index: -1;
  }

  .tex-sec h4
  {
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .tex-sec p
  {
        color: #fff;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 1.2px;
    line-height: 30px;
  }
.title-section-ourmenu h3
{
  font-weight: bold;
      text-align: left;
}
.pptp
{
      font-size: 16px;
    font-weight: 500;
}

.u-sec li
{
      color: #fff;
    padding-bottom: 7px;
    font-size: 14px;
}
.u-sec li:hover
{
      color: #8f78fd;
}

.s-but
{
  background: #fff;
    font-weight: 600;
}
.s-but:hover
{
  background:#8f78fd;
  color: #fff;
}

.u-sec1 li
{
      color: #fff;
    padding-top:   7px;
    font-size: 14px;
}

.tit03
{
  text-align: center;
  font-family: Poppins;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 6px;
      margin-top: 30px;
}
.tt-center h2
{
      margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.ol-text li
{
      font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 25px;
        text-align: left;
}
.p-t {padding-top: 30px;}

/*-------------------*/
.pot-p
{
    display: none;
      position: absolute;
    margin: 0;
    top: 64px;
    margin-left: 46px;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    background: #00000036;
    padding: 30px;
    border-radius: 10px;
}

.blo1:hover .pot-p
{
  display: block;
  transition: all .9s ease;
}
/*-------------------*/

.m-img img
{
  margin-left: 100px;
}

@media only screen and (max-width: 600px) {
.m-img img
{
  margin-left: 40px;
  margin-top: 50px;
}
}
.bg-color
{
     background: #f2f2f2;
    padding-top: 40px;
    padding-bottom: 40px;
}

.bg-color-d
{
     background: #8f78fd;
}
.h-class h1
{
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}
@media only screen and (max-width: 600px) {
.h-class h1
{
  font-size: 36px;
}
}
.h-class h5
{
      text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}
.h-class p
{
     text-align: center;
     font-size: 16px;
     font-weight: 500;
}
.section-top
{
  margin-top: 55px;
}
.img-width img
{
  width: 100%;
}
.div-align h2
{
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 100px;
  color: #fff;
}
.div-align-1 h4
{
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 50px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
.div-align h2
{
 
  margin-top: 30px;

}
}
.div-align p
{
  font-size: 17px;
  color: #fff;
}
.div-align-1 p
{
  font-size: 17px;
  color: #fff;
}

@media only screen and (max-width: 600px) {
.div-align p
{
  margin-bottom: 20px;
}
}

.bg-color-t
{
  margin-top: 30px;
}

.div-m h2
{
  font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 25px;
}
/*.div-m p
{
  margin-bottom: 40px;
}*/
.div-hh h2
{
  font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}
.icon-class
{
      color: #8f78fd;
    border: 2px solid #8f78fd;
    padding: 20px;
    border-radius: 50px;
    font-size: 30px;
    margin-right: 20px;
}
.icon-class:hover
{
      color: #fff;
    background: #8f78fd;
}
.div-align-1 h5
{
      color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}
.img-width-1 img
{
  width: 100%;
  margin-top: 20px;
}
.icon-class-1
{
  color: #8f78fd;
    border: 2px solid #8f78fd;
    padding: 13px 22px;
    border-radius: 50px;
    font-size: 30px;
    margin-right: 20px;
}
.icon-class-1:hover
{
      color: #fff;
    background: #8f78fd;
}
.icon-class-2
{
      color: #8f78fd;
    border: 2px solid #8f78fd;
    padding: 14px 17px;
    border-radius: 50px;
    font-size: 30px;
    margin-right: 5px;
}
.icon-class-2:hover
{
      color: #fff;
    background: #8f78fd;
}
.icon-class-3
{
       color: #8f78fd;
    border: 2px solid #8f78fd;
    padding: 12px 12px;
    border-radius: 50px;
    font-size: 30px;
    margin-right: 5px;
}
.icon-class-3:hover
{
      color: #fff;
    background: #8f78fd;
}
.m-position
{
  
    background: #00000069;
    width: 50%;
    height: 40px;
    margin-left: 40px;
    padding-top: 8px;
    border-radius: 5px;
      
}
.m-position:hover 
{
    padding-bottom: 8px;
    border-left: 5px solid #ffffff8c;
    border-right: 5px solid #ffffff8c;
}
@media only screen and (max-width: 600px) {
.tit8
{
      font-size: 30px;
}
}
.p-position
{
  color: #fff;
  font-size: 18px; 
  text-align: center;
}
@media only screen and (max-width: 600px) {
.p-position
{
  font-size: 12px; 
}
}
@media only screen and (max-width: 600px){
.pos-relative img {
    margin-bottom: 40px;
}
}
.img-gap {
    margin-top: 50px;
}

@media only screen and (max-width: 600px){
.img-gap {
    margin-top: 0px;
}
}
@media only screen and (max-width: 600px) {

.margin-sec
{
  margin-top: 40px;
}
}
.top-class
{
  margin-top: 100px;
}
@media only screen and (max-width: 600px) {
.top-class
{
  margin-top: 40px;
}
}

@media only screen and (max-width: 600px) {
.mobile-sec
{
  margin-bottom: 30px;
}
}
.section-img-position
{
  background-image: url(../images/aboutbanner.jpg);
}
.section-img-position-h2
{
    font-weight: bold;
    color: #fff;
    font-size: 60px;    
    padding: 25px;    
    position: relative;
}
.section-img-position-h2:before
{
        content: '';
    width: 96%;
    position: absolute;
    border: 8px solid #ffffff59;
    padding: 35px;
    top: 16px;
    left: 90px;
}
.section-img-position-h2:hover:before
{
       content: '';
    width: 96%;
    position: absolute;
    border: 8px solid #ffffff59;
    background: #ffffff59;
    padding: 35px;
    top: 16px;
    left: 9px;
    transition: all .6s ease;
}
@media only screen and (max-width: 600px) {
.section-img-position-h2:before
{
    left: 50px;
       padding: 25px; 
}
.section-img-position-h2:hover:before
{
  padding: 25px;
}
}
@media only screen and (max-width: 600px) {
.section-img-position-h2
{
    font-size: 40px;

}
}
.section-img-position2
{
  background-image: url(../images/professional-services-2-large.jpg);
}

.section-img-position3
{
  background-image: url(../images/testimonials.jpg);
}

.section-img-position4
{
  background-image: url(../images/ferris-clients03.jpg);
}

.section-img-position5
{
  background-image: url(../images/Project-Management-service.jpg);
}

.section-img-position6
{
  background-image: url(../images/contact.jpg);
}
.section-tag h2
{
      margin-bottom: 20px;
    font-weight: 600;
    font-size: 26px;
}
.bbtn-section
{
    border: 2px solid #000000;
    font-size: 18px;
    padding: 8px 15px;
    color: #000;
    font-weight: bold;
}
.bbtn-section:hover
{
     background: #8f78fd;
     border: 2px solid #8f78fd; 
     transition: all .6s ease;
     color: #fff;
}
@media only screen and (max-width: 600px) {
.bbtn-section
{
    margin-left: 70px;
}
}
.section-text-p
{
  margin-bottom: 25px;
}
/*============================================================================*/
/*============================================================================*/
.block-section-mar
{
  margin-top: 55px;
}
.block-section-mar h1
{
      text-align: center;
    margin-bottom: 45px;
    font-weight: bold;
}
.icon-tick
{
      color: #8f78fd;
    font-size: 18px;
}
.icon-tick-1
{
      color: #8f78fd;
    font-size: 22px;
}
.techno-h
{
      font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}
.techno-ul-li li
{
  margin-bottom: 6px;
}
.techno-ul-li-1 li
{
  margin-bottom: 10px;
}
.design-p
{
  font-size: 17px;
    margin-bottom: 20px;
}
.design-text-p
{
  font-size: 17px;
  margin-bottom: 20px;
}
.div-margin-sec
{
  margin-top: 50px;
}
.h5-class h5
{
      font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
}
.design-h5
{
   font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
    margin-top: 30px;
}
.background-color
{
  background: #f3f3f3;
  padding-top: 60px;
  padding-bottom: 30px;
}
/*====================================menu-css========================================*/
.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.85);
    min-width: 239px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #8f78fda6;}

.dropdown:hover .dropdown-content {display: block;}
.fa-caret-down
{
  color: #fff;
}

.left-49
{

    left: -16px !important;
    top: 10px !important;
}
.dropdown-menu
{
background-color: rgba(0, 0, 0, 0.85);  
}
.dropdown-item
{
    color: #fff;
}
.dropdown-menu a:hover {background-color: #8f78fda6;}

.border-class
{
  border-bottom: 1px solid #584a9c;
}
/*===============================menu-css=============================================*/
.seo-digital h1
{
  text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}
.seo-digital h2
{
      font-weight: bold;
    margin-bottom: 15px;
    background: #8f78fd24;
    border-bottom: 1px solid #8f78fd;
    padding: 10px;
    color: #8f78fd;
    font-size: 23px;
}
.seo-digital p
{
      font-size: 17px;
    margin-bottom: 20px;
}
.div-align-1 h2
{
  color: #fff;
  font-weight: bold;
      font-size: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 30px;
}
.div-align-2 h2
{
  font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}
.div-align-3 h2
{
  font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}
.box-section-data
{
      background: rgba(143, 120, 253, 0.08) none repeat scroll 0 0;
    border-radius: 10px;
    box-shadow: 0 0 7px 0 rgb(143, 120, 253) inset;
    display: table;
    margin: 30px 0 10px;
    overflow: hidden;
    padding: 0;
    width: 100%;
}
.box-section-data h2
{
    background: rgba(143, 120, 253, 0.79) none repeat scroll 0 0;
    border: 0 none;
    color: rgb(255, 255, 255);
    display: table;
    margin: 0 0 15px;
    padding: 15px 5px 15px 10px;
    width: 100%;
    text-align: center;

}
.box-section-data p
{
  font-weight: bold;
  margin-left: 40px;
}
.data-ul-li li
{
  font-weight: bold;
    font-size: 15px;
    color: #636363;
}
.data-services h2
{
  font-weight: bold;
    margin-bottom: 15px;
    background: #8f78fd24;
    border-bottom: 1px solid #8f78fd;
    padding: 10px;
    color: #8f78fd;
    font-size: 23px;
}
.data-services p
{
  margin-bottom: 30px;

}
.web-based h1
{
      text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
}
.web-based p
{
     text-align: center;
     font-size: 16px;
     font-weight: 500;
}
.web-based-p p
{
     text-align: left !important;
     font-size: 17px !important;
     font-weight: normal !important;
}
.web-based h2
{
        font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 92px;
}
@media only screen and (max-width: 600px) {
.web-based h2
{
    font-size: 19px;
    margin-top: 20px;
}
}
.web-based-h2 h2
{
        font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
   
}
@media only screen and (max-width: 600px) {
.web-based-h2 h2
{
    font-size: 19px;
    margin-top: 20px;
}
}
.bg-color01
{
      background: #f2f2f2;
    padding-top: 40px;
    padding-bottom: 40px;
}
.web-based-margin
{
  margin-top: 40px;
}
.b-section
{
  margin-top: 55px;
}
.tit-h1
{
      text-align: center;
    font-family: Poppins;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 30px;
}
@media only screen and (max-width: 600px) {
.tit-h1
{
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 3px;
}
}
.web-hh2 h2
{
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 23px;
}
@media only screen and (max-width: 600px) {
.web-hh2 h2
{
   font-size: 17px;
   margin-top: 20px;
}
}
.web-hh2 h3
{
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 17px;
}
@media only screen and (max-width: 600px) {
.web-hh2 h3
{
      font-size: 14px;
    line-height: 18px;
}
}
.client-p
{
  margin-bottom: 30px;
  margin-top: 50px;
  text-align: center;
}
.multi-section h1
{
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 600px) {
.multi-section h1
{
    font-size: 33px;
}
}
.multi-section p
{
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.bg-section
{
  margin-top: 55px;
}
@media only screen and (max-width: 600px) {
.bg-section
{
  padding-bottom: 0px;
}
}
.multi-h2 h2
{
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 23px;
}
@media only screen and (max-width: 600px) {
.multi-h2 h2
{
  font-size: 17px;
}
}
.multi-h2 p
{
  font-size: 17px;
}
.we-h2 h2
{
  text-align: center;  
 font-weight: bold;
}
.flo-section
{
  float: left;
}
.h-class h3
{
  font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}
.portfolio h2
{
  text-align: center; 
  margin-bottom: 30px;
}
@media only screen and (max-width: 600px) {

.tit5
{

    font-size: 30px;
    letter-spacing: 5px;
    word-spacing: 3px;
}
}
.startup-b h1
{
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.startup-b p
{
 text-align: center;
 font-size: 16px;
 font-weight: 600;
}
.h-sec-h h2
{
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 25px;
}
.h-sec-h h3
{
margin-bottom: 20px;
font-weight: 600;
font-size: 16px;
line-height: 23px;
}
.p-text-cl
{
  font-size: 17px;
  margin-top: 10px;
}
.p-text-p2
{
  font-size: 17px;
}
.menu-sidebar
{
  margin-left: 40px;
}
.pat-p-text
{
  color:  #c5c5c5;
}
.cont-class
{
  margin-left: 185px;
}
@media only screen and (max-width: 600px) {
.cont-class
{
  margin-left: 0px;
}
}

    .box-effect {
  background: white;
  margin: auto;
  margin-top: 5%;
  padding-bottom: 30px;
  padding: 1px 10px;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.box-effect:hover {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  animation-name: example;
  animation-duration: 0.25s;
  border-left: 8px solid black;
}



p {
  text-align: justify;
}

@keyframes example {
    0%   {border-bottom:  2px solid #ea9500;}
    25%  {border-bottom:  3px solid #ea9500;}
    50%  {border-bottom:  4px solid #ea9500;}
    100% {border-bottom:  5px solid #000;}
}