@charset "utf-8";
/*
Theme Name: Candu - Multipurpose HTML5 Template.
Author: metropplitanthemes
Author URL: https://www.templatemonster.com/authors/metropplitanthemes/
Version:1.0
*/
/*===========================
 =  Table of CSS
  	1. General code
		1.1. Typography
		1.2. Button
		1.3. Space margins and padding
		1.4. Form
		1.5. Table
		1.6. Accordion
		1.7. Section-background-color & sectino-heading
		1.8. Tabs 
		1.9. parallex-background
		1.10. Modal
	2. Header
	3. Intro
	4. Inner-Intro
	5. Contact-Us
	6. Team
	7. FAQ
	8. Portfolio
	9. Blog
		9.1. Post-type
		9.2. Sidebar
	10. Blog-Detail
		10.1 Blog-content
		10.2. Comments	
	11. Services
	12. About-Us
	13. Gallery
	14. Footer
	15. Responsive-CSS	
===========================*/

/*====================
   Animations
==========================*/

@keyframes pulseInOut {
  0% {
    opacity: 1;
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

/*====================
	1. General code
==========================*/

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Rubik", sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  line-height: 28px;
  overflow-x: hidden;
  font-weight: 400;
  color: #696393;
}

/*----------------------
	1.1. Typography
------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0e073c;
  margin: 0 auto 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 80px;
}
h2 {
  font-size: 60px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 30px;
}
h5 {
  font-size: 26px;
}
h6 {
  font-size: 20px;
}
p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 25px;
}
a {
  transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  text-decoration: none;
  color: #4196ff;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: #0672f8;
}
ul,
ol {
  margin: 0 0 20px;
  list-style-type: none;
}
ul li,
ol li {
  margin: 0 0 10px;
}
blockquote {
  background: #151525;
  position: relative;
  padding: 30px 30px 30px 80px;
  margin: 0 auto 30px;
}
blockquote::after {
  position: absolute;
  top: 40%;
  left: 25px;
  color: #4a5462;
  content: "\f10d";
  font-family: fontawesome;
  width: 40px;
  height: 40px;
  text-align: center;
  transform: translateY(-50%);
  font-size: 30px;
}
blockquote p {
  color: #bdc4cf;
  font-size: 14px;
  line-height: 24px;
  margin: 0 auto 15px;
}
blockquote .quote_owner {
  color: #4196ff;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 15px;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.bg-overlay {
  position: relative;
  z-index: 1;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.light-overlay:before {
  background-color: rgba(255, 255, 255, 0.6);
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

/*-----------------
	1.2. Button
-------------------------*/
.btn {
  position: relative;
  background: #cd0c2cd1;
  border: medium none;
  border-radius: 30px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
  height: auto;
  margin: auto;
  letter-spacing: 0.5px;
  padding: 15px 50px;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
}
.btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  border-radius: 30px;
  background: #0672f8;
  background: #f8002a;
  z-index: -1;
  transition: 0.3s;
}
.light-bg {
  background: #89c4e5;
  background-color: #3c4caed8;
  color: #fff;
}
.light-bg:before {
  background-color: #75a9c6;
  background-color: #0022ff;
}
.btn.btn-lg {
  font-size: 14px;
  line-height: 30px;
  padding: 16px 65px;
}
.btn.btn-sm {
  font-size: 14px;
  padding: 8px 22px;
}
.btn:hover,
.btn:focus {
  color: #ffffff;
  outline: none;
  box-shadow: none;
}
.btn:hover:before {
  height: 100%;
}
.btn-link {
  font-weight: 600;
  font-size: 14px;
  color: #0e073c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.btn-link:hover {
  color: #4196ff;
}
.btn.outline-btn {
  background: none;
  color: #4196ff;
  border: #4196ff solid 3px;
  letter-spacing: 4px;
  padding: 15px 50px;
  font-weight: 700;
}
.btn.outline-btn:hover {
  color: #fff;
}

/*-------------------------------------
	1.3. Space margins and padding
------------------------------------------------*/
.padding_none {
  padding: 0px;
}
.padding_top_20 {
  padding-top: 20px;
}
.padding_50px {
  padding: 50px 0;
}
.padding_4x4_30 {
  padding: 30px;
}
.padding_4x4_40 {
  padding: 40px;
}
.padding_right {
  padding-right: 60px;
}
.padding_left {
  padding-left: 60px;
}
.space-20 {
  width: 100%;
  height: 20px;
  clear: both;
}
.space-30 {
  width: 100%;
  height: 30px;
  clear: both;
}
.space-40 {
  width: 100%;
  height: 40px;
  clear: both;
}
.space-60 {
  width: 100%;
  height: 60px;
  clear: both;
}
.space-80 {
  height: 80px;
  width: 100%;
}
.margin-btm-20 {
  margin-bottom: 20px;
  clear: both;
}
.margin-top-20 {
  margin-top: 20px;
  clear: both;
}
.margin-top-40 {
  margin-top: 40px;
  clear: both;
}
.margin-btm-40 {
  margin-bottom: 40px;
  clear: both;
}
.margin-top-60 {
  margin-top: 60px;
  clear: both;
}
.margin-btm-60 {
  margin-bottom: 60px;
  clear: both;
}
.margin_60 {
  margin: 60px auto;
}
.margin-none {
  margin: 0px;
}

/*-----------------
	1.4. Form
---------------------------*/
.form-group {
  margin-bottom: 25px;
  position: relative;
}
.form-label {
  font-weight: 500;
  margin: 0 auto 8px;
}
.form-control {
  background: #f7f9ff;
  border: 0 none;
  border-radius: 30px;
  box-shadow: none;
  color: #9d97c5;
  font-size: 13px;
  min-height: 63px;
  line-height: 33px;
  padding: 15px 30px;
}
.form-control:hover {
  box-shadow: none;
  outline: none;
}
.form-control:focus {
  box-shadow: none;
  border-color: #eedab3;
  outline: none;
  background: #edf1fd;
}
.select {
  position: relative;
}
.select select {
  appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}
.select::after {
  color: #878787;
  content: "";
  cursor: pointer;
  font-family: fontawesome;
  font-size: 15px;
  padding: 12px 0;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 0;
}
.form-control option {
  padding: 10px;
}
.control-label {
  color: #555;
  font-size: 15px;
  font-weight: 700;
}
.radio label,
.checkbox label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  display: none;
}
.radio label:before {
  background-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: #cacaca;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 20px;
  left: 0;
  top: 6px;
  position: absolute;
  width: 20px;
}
.checkbox label::before {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #111111;
  content: "";
  display: inline-block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 16px;
}
.radio input[type="radio"]:checked + label:before {
  content: "\2022";
  font-size: 30px;
  text-align: center;
  line-height: 11px;
  color: #4196ff;
}
.checkbox input[type="checkbox"]:checked + label:before {
  content: "\2713";
  font-size: 12px;
  text-align: center;
  line-height: 14px;
}
.black_input .form-control {
  background: #222;
  border-radius: 3px;
  color: #fff;
  border: #222 solid 1px;
  font-size: 17px;
}
.checkbox,
.radio {
  padding-top: 5px;
}

/*-----------------
	1.5. Table
---------------------------*/
table {
  margin: 0 0 30px;
  width: 100%;
}
table th,
table td {
  border: 1px solid #cccccc;
  padding: 15px;
  padding: 18px;
}
table th img,
table td img {
  max-width: 100%;
}
table thead {
  background: #eee;
}
table thead th,
table thead td {
  text-transform: uppercase;
  font-weight: 900;
  color: #111;
}

/*-----------------
	1.6. Accordion
---------------------------*/
.panel-title {
  position: relative;
}
.panel-title a {
  display: block;
  padding: 28px 50px 28px 0;
  position: relative;
}
.panel-title a::after {
  position: absolute;
  top: 33px;
  right: 0;
  background: #b7b7b7;
  height: 2px;
  width: 16px;
  content: "";
}
.panel-title a.collapsed::before {
  position: absolute;
  top: 26px;
  right: 7px;
  background: #b7b7b7;
  height: 16px;
  width: 2px;
  content: "";
}
.panel-title {
  margin: 0 auto;
}
.panel.panel-default:first-child {
  border-top: #e8e7e7 solid 1px;
}
.panel.panel-default {
  border-bottom: #e8e7e7 solid 1px;
}

/*-----------------------------------------------------------
	1.7. Section-background-color & sectino-heading
-------------------------------------------------------------------*/
.primary-bg {
  background: #4196ff;
}
.secondary-bg {
  background: #0e073b;
}
.gray_bg {
  background: #f3f3f3;
}
.section-padding {
  padding: 120px 0;
}

.section-padding-2 {
  padding: 120px 0 90px;
}
.section-header {
  margin: 0 auto;
  max-width: 620px;
  padding-bottom: 30px;
}
.section-header.full-wd {
  max-width: 1000px;
}
.section-header h2 {
  margin: 0 auto 30px;
  letter-spacing: -1px;
}
.section-header .heading_arrow {
  margin-bottom: 10px;
}
.section-header h5 {
  color: #746f96;
  font-size: 24px;
  text-transform: uppercase;
}
.z_index {
  z-index: 2;
}
.divider {
  border-top: #ebebeb solid 1px;
}
.white_text,
.white_text p,
.white_text h1,
.white_text h2,
.white_text h3,
.white_text h4,
.white_text h5,
.white_text h6 {
  color: #fff;
}

/*--------------------
	1.8. Tabs 
------------------------------*/
.nav.nav-tabs {
  border: medium none;
}
.nav-tabs > li a {
  background: #000000 none repeat scroll 0 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  margin-right: 5px;
  padding: 14px 26px;
  text-align: center;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li a:hover,
.nav-tabs > li a:focus {
  color: #ffffff;
  background: #4196ff;
}
.nav-tabs > li {
  margin-bottom: 0;
}

/*--------------------------------------------
	1.9. parallex-background
---------------------------------------------------*/
.parallex-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/*------------------------
	1.10. Modal
--------------------------------*/
.modal-dialog {
  margin: 20px auto;
  max-width: 90%;
  width: 500px;
}
.modal-content {
  padding: 0 32px 22px;
}
.modal-header {
  padding: 15px 0;
  margin-bottom: 25px;
}
.modal-header h3 {
  margin: 15px auto;
}
.modal-body {
  padding: 10px 0;
}
.modal .modal-header .close {
  background: #000000 none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: 17px;
  height: 31px;
  line-height: 30px;
  margin-top: 5px;
  opacity: 1;
  position: absolute;
  right: -10px;
  text-align: center;
  text-shadow: none;
  top: -20px;
  width: 31px;
}
label.error {
  color: #ff0000;
  display: block;
  font-size: 13px;
  font-weight: normal;
  text-align: left;
}

.sigma_close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.sigma_close:hover {
  border-color: #4196ff;
  background-color: #4196ff;
  transform: rotate(180deg);
}

.sigma_close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #9993bf;
}

.sigma_close:hover span {
  background-color: #fff;
}

.sigma_close span:first-child {
  transform: rotate(45deg);
}
.sigma_close span:last-child {
  transform: rotate(135deg);
}

/*================
	 2. Header
===========================*/
.slide_menu {
  position: fixed;
  top: 0;
  padding: 20px 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  z-index: 9999;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.sidebar_logo {
  margin: 0 auto 30px;
  padding: 20px;
  text-align: center;
}
.slide_menu.show {
  right: 0;
}

.slide_menu .navbar-nav li a {
  padding: 15px 22px;
}
.slide_menu ul li ul.sub-menu {
  position: relative;
}

.slide_menu .sidebar_widget {
  padding: 0 30px;
}

.slide_menu .sidebar_widget + .sidebar_widget {
  margin-top: 30px;
}

#overlay_bg.show {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}

/*--- style 2----- */

.sigma_header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
}
.navbar {
  padding: 0;
}

.sigma_header .sigma_logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.sigma_header .navbar-nav {
  flex-direction: row;
  padding-left: 0;
  margin: 0;
}

.sigma_header .navbar-nav li {
  position: relative;
  transition: 0.3s;
  margin: 0;
}

.sigma_header .navbar-nav li a {
  display: block;
  padding: 30px 15px;
  color: #9993bf;
  font-weight: 600;
  position: relative;
}

.sigma_header .navbar-nav li:first-child > a {
  padding-left: 0;
}

.sigma_header .navbar-nav li:last-child > a {
  padding-right: 0;
}

.sigma_header .navbar-nav > li.menu-item-has-children > a:after {
  font-family: "FontAwesome";
  font-weight: 400;
  content: "\f078";
  font-size: 12px;
  margin-left: 10px;
  display: inline-block;
  transition: 0.3s;
}

.sigma_header .navbar-nav li a:hover,
.sigma_header .navbar-nav li.active > a {
  color: #4196ff;
}

.sigma_header .navbar-nav li .sub-menu {
  position: absolute;
  top: 110%;
  min-width: 250px;
  padding-left: 0;
  margin: 0;
  background-color: #fff;
  border-bottom: 4px solid #4196ff;
  border-radius: 0;
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.sigma_header .navbar-nav li .sub-menu li {
  margin: 0;
}

.sigma_header .navbar-nav li .sub-menu li a {
  border-bottom: 1px solid #e1e1e1;
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
}

.sigma_header .navbar-nav li .sub-menu li.menu-item-has-children > a:after {
  position: absolute;
  font-family: "FontAwesome";
  font-weight: 400;
  content: "\f054";
  right: 18px;
  font-size: 14px;
}

.sigma_header .navbar-nav li .sub-menu li:last-child a {
  border-bottom: none;
}

.sigma_header .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.sigma_header .navbar-nav li.menu-item-has-children .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
}

.sigma_header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 55;
}

/* megamenu starts */

.sigma_header .navbar-nav li.menu-item-has-children.has-megamenu {
  position: static;
}

.sigma_header .navbar-nav li .sub-menu.one-col {
  min-width: 400px;
}

.menu-item-has-children .sub-menu li .sigma_info {
  border-bottom: 1px solid #e1e1e1;
  padding: 15px;
  margin-bottom: 0;
  border-radius: 0;
}

.menu-item-has-children .sub-menu li:last-child .sigma_info {
  border: 0;
}

.menu-item-has-children .sub-menu li .sigma_info h5 a {
  padding: 0;
  border: 0;
}

.sigma_header .navbar-nav li .sub-menu.two-col {
  width: calc(100% - 200px);
  left: 50%;
  transform: translateX(-50%);
}

.sigma_header .navbar-nav li .sub-menu.three-col {
  width: 100%;
  left: 0;
}

/* Header Controls starts */

.sigma_header .sigma_header-controls ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sigma_header .sigma_header-controls ul li {
  margin-bottom: 0;
}

.sigma_header .sigma_header-controls ul li + li {
  margin-left: 15px;
}

.sigma_header .sigma_header-controls ul li.header-controls-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #e1e1e1;
  color: #9993bf;
  font-size: 18px;
  border-radius: 50%;
}

.sigma_header .sigma_header-controls ul li.header-controls-item a:hover {
  background-color: #4196ff;
  border-color: #4196ff;
  color: #fff;
}

.sigma_header .aside-toggle,
.sigma_header .aside-toggle.desktop-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  transition: 0.3s;
}

.sigma_header .aside-toggle:hover {
  background-color: #4196ff;
  border-color: #4196ff;
}

.sigma_header .aside-toggle {
  display: none;
}

.sigma_header .aside-toggle span {
  width: 24px;
  height: 2px;
  background-color: #9993bf;
  transition: 0.3s;
}

.sigma_header .aside-toggle:hover span {
  background-color: #fff;
}

.sigma_header .aside-toggle span + span {
  margin-top: 5px;
}

.sigma_header .aside-toggle:hover span:first-child {
  transform: translate3d(-6px, -4px, 0) rotate(-45deg) scaleX(0.7);
  transition: top 0.1s ease,
    transform 0.3s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.sigma_header .aside-toggle:hover span:last-child {
  transform: translate3d(-5px, 5px, 0) rotate(45deg) scaleX(0.7);
  transition: bottom 0.1s ease,
    transform 0.3s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.sigma_header .aside-toggle.desktop-toggler:hover span:first-child {
  transform: translate3d(6px, -4px, 0) rotate(45deg) scaleX(0.7);
  transition: top 0.1s ease,
    transform 0.3s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.sigma_header .aside-toggle.desktop-toggler:hover span:last-child {
  transform: translate3d(5px, 5px, 0) rotate(-45deg) scaleX(0.7);
  transition: bottom 0.1s ease,
    transform 0.3s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.sigma_header .aside-toggle:hover span + span {
  margin-top: 0;
}

/* Search Form */

.search-form-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.search-form-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.search-form-wrapper .sigma_close {
  position: absolute;
  top: 60px;
  right: 60px;
  border-color: #fff;
}
.search-form-wrapper .sigma_close span {
  background-color: #fff;
}
.search-form-wrapper form {
  position: relative;
  width: 70%;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
}
.search-form-wrapper.open form {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.search-form-wrapper form input {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  font-size: 40px;
  height: 80px;
  width: 100%;
  outline: none;
  color: #fff;
  font-weight: 400;
}

.search-form-wrapper form input::placeholder {
  color: #fff;
}
.search-form-wrapper .search-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: transparent;
  border: 0;
  color: #fff;
  font-size: 30px;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
  padding: 0;
}
.search-form-wrapper .search-btn:hover i {
  color: #4196ff;
  transition: 0.3s;
}

/*Aside*/

.sigma_aside .sigma_close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.sigma_aside {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  z-index: 99;
  background-color: #fff;
  transition: 0.3s;
  overflow-y: auto;
}

.sigma_aside-overlay.aside-trigger,
.sigma_aside:not(.sigma_aside-desktop) {
  display: none;
}

.sigma_aside .sigma_logo-wrapper {
  padding: 30px 15px;
}

.sigma_aside .navbar-nav li {
  display: block;
  margin: 0;
}

.sigma_aside .navbar-nav li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #9993bf;
  font-weight: 600;
  border-bottom: 1px solid #e1e1e1;
}

.sigma_aside .navbar-nav li.menu-item-has-children > a:after {
  position: absolute;
  font-family: "FontAwesome";
  font-weight: 400;
  content: "\f107";
  right: 18px;
  display: flex;
  align-items: center;
  font-size: 18px;
}

.sigma_aside .navbar-nav li .sub-menu {
  display: none;
}

.sigma_aside .navbar-nav li .sub-menu {
  background-color: #eef5ff;
  padding: 0;
}
.sigma_aside-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
}

.aside-open .sigma_aside {
  left: 0;
}

.aside-open .sigma_aside:not(.sigma_aside-desktop) + .sigma_aside-overlay,
.aside-right-open .sigma_aside-desktop + .sigma_aside-overlay {
  opacity: 1;
  visibility: visible;
}

.sigma_aside.sigma_aside-desktop {
  right: -300px;
  left: auto;
}

.aside-right-open .sigma_aside.sigma_aside-desktop {
  right: 0;
}

/*=================
	3. Intro
=======================*/
.intro_text {
  padding: 230px 0;
}
.intro_text h5 {
  color: #60869e;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 24px;
}
.intro_text h1 {
  margin: 0 auto 50px;
  line-height: 90px;
}
.btn_wp {
  padding: 2px 0 25px;
}
.img_wp {
  position: relative;
}
.blue_box {
  background: #4196ff;
  padding: 70px 64px;
  position: absolute;
  top: -60px;
  left: -70px;
  max-width: 400px;
  color: #fff;
}
.blue_box h4 {
  color: #fff;
  line-height: 40px;
  margin: 0 auto 50px;
}
.blue_box h6 {
  color: #cde3ff;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0 auto 40px;
}
.angel_img {
  margin-right: -15px;
}
.angels_list h2 {
  color: #fff;
  font-size: 43px;
  margin: 0 auto 40px;
  line-height: 46px;
}
.angels_list {
  padding: 80px 8%;
}
.angels_list .sub-heading {
  font-size: 20px;
}
.angels_list .nav-tabs {
  display: block;
}
.angels_list .nav-tabs li a {
  text-align: left;
  background: no-repeat;
  padding: 10px 0;
  color: #918ac2;
  font-size: 26px;
  font-weight: 500;
  font-family: Poppins;
  border: 0;
  margin: 0 auto;
  position: relative;
}
.angels_list .nav-tabs li a.active::after {
  position: absolute;
  top: 49%;
  left: -150px;
  content: "";
  height: 2px;
  width: 130px;
  background: rgba(255, 255, 255, 0.3);
}
.angels_list .nav-tabs li a span {
  text-transform: uppercase;
  color: #5c548f;
  font-size: 14px;
}
.angels_list .nav-tabs li a p {
  display: inline-block;
  margin: 0 auto;
  min-width: 250px;
  font-size: 26px;
  font-weight: 500;
  font-family: Poppins;
}
.angels_list .nav-tabs li a:hover,
.angels_list .nav-tabs li a.active {
  background: none;
  border: 0;
  color: #fff;
}
.angels_list .nav-tabs li a:hover span,
.angels_list .nav-tabs li a.active span {
  color: #4196ff;
}

/*=================
	4. Inner-Intro
=======================*/
#inner_header {
  background: transparent;
  position: relative;
  overflow: visible;
}
.inner_intro {
  padding: 180px 0;
  text-align: center;
}
.inner_intro h1 {
  margin: 0 auto 20px;
}
.breadcrumb {
  background: none;
  padding: 0;
  margin: 0 auto 15px;
  display: block;
}
.breadcrumb ul {
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.breadcrumb ul li.breadcrumb-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  color: #60869e;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 15px;
}
.breadcrumb ul li a {
  color: #60869e;
  text-transform: uppercase;
  font-weight: 500;
}
.breadcrumb ul li a:hover {
  color: #0672f8;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 20px;
  padding-right: 15px;
  color: #60869e;
  font-weight: 500;
}

/*=================
	5. Contact-Us
========================*/
.contact_wp {
  position: relative;
  box-decoration-break: 1;
}
.box_wp {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.07) 0 0 15px;
}
.form_wrap {
  padding: 60px 60px 60px 40px;
}
.box_heading {
  margin: 0 auto 36px;
}
.box_heading h4 {
  margin: 0 auto 2px;
}
.heading_arrow span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1px;
  background: #4196ff;
  height: 4px;
  width: 30px;
  border-radius: 35px;
}
.heading_arrow span.dots_div {
  width: 4px;
  height: 4px;
  background: #4196ff;
  border-radius: 50px;
  position: relative;
  margin-left: 5px;
}
.heading_arrow span.dots_div::after {
  width: 4px;
  height: 4px;
  background: #4196ff;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: -5px;
  content: "";
}
.contact_info {
  padding: 60px 50px;
  height: 100%;
}
.contact_info ul {
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.contact_info ul li {
  padding: 30px 0;
  border-bottom: rgba(255, 255, 255, 0.07) solid 1px;
  margin: 0 auto;
}
.contact_info ul li:first-child {
  padding-top: 0px;
}
.contact_info ul li:last-child {
  border-bottom: 0;
}
.contact_info ul li h6 {
  margin: 0 auto;
  color: #a39ccf;
  font-size: 18px;
}
.contact_info ul li p {
  color: #5c548f;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto;
}
.direction_btn a {
  display: block;
  background: #fff;
  text-transform: uppercase;
  color: #8a84af;
  font-size: 14px;
  font-weight: 500;
  padding: 26px 10px;
  margin: 0 -50px -60px;
  text-align: center;
}
.direction_btn a i {
  margin-left: 5px;
  color: #4196ff;
}
.direction_btn a:hover {
  color: #fff;
  background: #4196ff;
}
.direction_btn a:hover i {
  color: #fff;
}
.map_wp {
  margin: -150px auto 0px;
}
.map_wp iframe {
  width: 100%;
  height: 650px;
}

/*==============
	6. Team
===================*/

/* style 1 */

.team_wp {
  overflow: hidden;
  margin: 30px auto;
  text-align: center;
}
.team_img {
  overflow: hidden;
  position: relative;
  margin: 0 auto 33px;
}
.hover_wp {
  position: absolute;
  top: 0;
  right: 100%;
  background: rgba(65, 155, 250, 0.9);
  text-align: center;
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.team_img:hover .hover_wp {
  right: 0;
}
.hover_wp ul {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  text-align: center;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.hover_wp ul li {
  display: inline-block;
  margin: 0 6px;
}
.hover_wp ul li a {
  color: #fff;
  font-size: 18px;
  padding: 4px;
  display: block;
  transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
}
.hover_wp ul li a:hover {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  -webkit-transform: scale(1.5);
}
.team_wp h6 {
  font-size: 22px;
  margin: 0 auto 5px;
}
.member_post {
  text-transform: uppercase;
  color: #4196ff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 auto;
}
.quick_start {
  background: url(../images/quick_start.jpg) no-repeat center / cover;
}
.quick_start h2 {
  font-size: 46px;
}
.quick_start h5 {
  text-transform: uppercase;
  color: #8c85b7;
}
.sponsors {
  background: url(../images/sponsors_bg.jpg) no-repeat center / cover;
  padding: 100px 0;
  margin: 0 20px;
  text-align: center;
}
.sponsors a {
  display: inline-block;
  vertical-align: middle;
  padding: 0 25px;
  max-width: 23%;
}

/* style 2 */

.sigma_team {
  position: relative;
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  text-align: center;
  padding: 30px;
  border-radius: 6px;
  overflow: hidden;
}

.sigma_team .sigma_team-thumb {
  position: relative;
  overflow: hidden;
}

.sigma_team .sigma_team-thumb.has-width {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.sigma_team .sigma_team-thumb img {
  transition: 0.3s;
  width: 100%;
}

.sigma_team .sigma_team-thumb:hover img {
  transform: scale(1.1);
}

.sigma_team .sigma_team-thumb.has-width:hover img {
  transform: none;
}

.sigma_team .sigma_team-body {
  margin-top: 25px;
}

.sigma_team .sigma_team-body h5 {
  margin-bottom: 0;
}

.sigma_team .sigma_team-body h5 a {
  color: #0e073c;
}

.sigma_team .sigma_team-body h5 a:hover {
  color: #0672f8;
}

.sigma_team .sigma_team-categories,
.sigma_team .sigma_team-body p {
  margin-top: 10px;
  margin-bottom: 0;
}

.sigma_team .sigma_team-categories a + a {
  margin-left: 10px;
}

.sigma_team .sigma_team-categories a {
  color: #696393;
  font-weight: 600;
  text-transform: uppercase;
}

.sigma_team .sigma_team-categories a:hover {
  color: #0672f8;
}

.sigma_team .sigma_social-icons {
  margin-top: 18px;
}

.sigma_team.style-7 {
  box-shadow: none;
  padding: 0;
  border: 1px solid #e1e1e1;
}

.sigma_team.style-7 .sigma_team-body {
  margin-top: 0;
  padding: 30px;
}

/*----- Team Detail ------*/

.about-team .team-descr,
.about-team .follow_us {
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 0;
  border-top: 1px solid #efefef;
  display: block;
  padding-left: 0;
  list-style-type: none;
}

.about-team .follow_us ul {
  padding: 0;
  margin: 0;
}

.about-team .team-descr li {
  color: #36353a;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  font-size: 18px;
}

.about-team .team-descr li i {
  color: #696393;
  font-size: 28px;
}

.about-team .team-descr li .descr-title {
  font-weight: 500;
  padding-right: 6px;
  padding-left: 20px;
}

.about-team .team-descr li + li {
  margin-top: 30px;
}

/*==============
	7. FAQ
====================*/
.faq_search {
  margin: 0 auto;
}
.faq_search form {
  position: relative;
}
.faq_search form button {
  position: absolute;
  top: 50%;
  right: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  color: #4196ff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 auto;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.faq_search .form-control {
  height: 78px;
  border-radius: 100px;
  padding: 20px 150px 20px 50px;
}
.faq_box {
  padding: 30px;
  border: #e5e5e5 solid 2px;
  margin: 70px auto 0px;
}
.faq_box h6 {
  margin: 0 auto 14px;
  line-height: 28px;
}
.faq_box p {
  font-size: 14px;
  line-height: 24px;
  margin: 0 auto;
}
.faq_number {
  display: block;
  width: 60px;
  height: 60px;
  border: #e5e5e5 solid 2px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: #4196ff;
  font-size: 15px;
  font-weight: 700;
  margin: -60px 0 20px;
  background: #fff;
}

/*===============
	8. Portfolio
=====================*/
.portfolio_wp {
  overflow: hidden;
  margin: 0 auto 30px;
  position: relative;
}
.portfolio_wp .portfolio_img img {
  margin: 0 auto;
}
.portfolio_info {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: #fff;
  padding: 35px;
}
.portfolio_category {
  margin: 0 auto 15px;
}
.portfolio_category a {
  display: inline-block;
  margin-right: 5px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.portfolio_info h4 {
  margin: 0 auto 0;
}
.portfolio_info h4 a {
  color: #0e073c;
}
.portfolio_info h4 a:hover {
  color: #4196ff;
}
.move_btn {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #f2f8ff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  right: 35px;
  color: #b4aed8;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.move_btn:hover,
.portfolio_wp:hover .move_btn {
  background: #4196ff;
  color: #fff;
}
.col_wp {
  float: left;
  width: 46%;
}
.col_wp:first-child {
  margin-right: 8%;
}
.portfolio_img {
  padding: 0 15px;
}
.portfolio_img img {
  margin: 0 auto 30px;
  width: 100%;
}

.portfolio_img .owl-nav {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  width: 190px;
  justify-content: space-between;
}
.portfolio_arrow {
  overflow: hidden;
}
.portfolio_arrow a {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  float: left;
  color: #111;
  opacity: 0.5;
}
.portfolio_arrow a.next_arrow {
  float: right;
}
.portfolio_arrow a:hover {
  opacity: 1;
}

/*=================	
	9. Blog
========================*/
.post_wrap {
  margin: 0 auto 30px;
}

.sigma_post {
  position: relative;
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  margin-bottom: 30px;
}

.sigma_post .sigma_post-thumb {
  position: relative;
  overflow: hidden;
}

.sigma_post .sigma_post-thumb img {
  transition: 0.3s;
  width: 100%;
}

.sigma_post .sigma_post-thumb:hover img {
  transform: scale(1.1);
}

.sigma_post .sigma_post-categories {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
}

.sigma_post .sigma_post-categories a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 25px;
  background-color: #4196ff;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 26px;
  transition: 0.3s;
}

.sigma_post .sigma_post-categories a:hover {
  background-color: #4fa788;
}

.sigma_post .sigma_post-categories a + a {
  margin-left: 10px;
}

.sigma_post .sigma_post-body {
  padding: 25px 25px 30px;
  position: relative;
}

.sigma_post .sigma_post-body:before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background-color: #4196ff;
}

.sigma_post .sigma_post-meta {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 9px;
}

.sigma_post .sigma_post-meta ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.sigma_post .sigma_post-meta ul li {
  color: #696393;
  font-size: 14px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  margin: 0;
}

.sigma_post .sigma_post-meta ul li a {
  color: #696393;
}

.sigma_post .sigma_post-meta ul li a:hover {
  color: #4fa788;
}

.sigma_post .sigma_post-meta ul li + li {
  padding-left: 12px;
  margin-left: 12px;
}

.sigma_post .sigma_post-meta ul li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #696393;
}

.sigma_post .sigma_post-meta .sigma_post-date {
  position: absolute;
  right: 20px;
  top: -28px;
  text-align: center;
  padding: 12px 15px;
  font-weight: 600;
  background-color: #4196ff;
  color: #fff;
  line-height: 1;
  font-size: 15px;
  transition: 0.3s;
}

.sigma_post .sigma_post-meta .sigma_post-date:hover {
  background-color: #4fa788;
}

.sigma_post .sigma_post-body .sigma_post-content {
  padding: 9px 0 0;
}

.sigma_post .sigma_post-body .sigma_post-content h5 {
  margin-bottom: 15px;
}

.sigma_post .sigma_post-body .sigma_post-content h5 a {
  color: #0e073c;
}
.sigma_post .sigma_post-body .sigma_post-content h5 a:hover {
  color: #4196ff;
}

.sigma_post .sigma_post-body .btn-link {
  color: #333;
  font-weight: 600;
  margin-top: 18px;
}

.sigma_post .sigma_post-body .btn-link i {
  color: #4196ff;
}

.sigma_post .sigma_post-body .btn-link:hover {
  color: #4fa788;
}

.sigma_post.style-5 {
  border-radius: 6px;
  overflow: hidden;
}

.sigma_post.style-5 .sigma_post-body:before {
  content: none;
}

.sigma_post.style-5 .sigma_post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sigma_post.style-5 .sigma_post-meta a {
  color: #696393;
  font-size: 14px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.sigma_post.style-5 .sigma_post-meta a:hover {
  color: #4196ff;
}

.sigma_post.style-5 .sigma_post-meta a i {
  color: #4196ff;
  font-weight: 500;
  margin-right: 12px;
  font-size: 16px;
}

.sigma_post.style-5 .sigma_post-meta ul li + li:before {
  content: none;
}

.sigma_post.style-5 .sigma_post-meta ul li + li {
  padding-left: 0;
}

.sigma_post.style-5 .sigma_post-meta ul li a {
  color: #4196ff;
  font-weight: 500;
  font-size: 16px;
}
/*-------------------
	9.1. Post-type
---------------------*/
.post_info {
  background: #fff;
  padding: 35px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 25px;
  margin: 0 35px;
  position: relative;
  z-index: 1;
}
.post_date {
  margin: 0 auto 15px;
}
.post_date a {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
}
.post_info h5 {
  font-size: 24px;
  letter-spacing: -0.5px;
}
.post_info h5 a {
  color: #0e073c;
}
.post_info h5 a:hover {
  color: #4196ff;
}
.post_categorys a {
  display: inline-block;
  background: #f2edff;
  padding: 1px 22px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  color: #a7a7cb;
  font-size: 12px;
  margin: 0 5px 5px 0;
}
.post_categorys a:hover {
  background: #4196ff;
  color: #fff;
}
.post_img {
  margin: 0 auto -90px;
  position: relative;
}

.post_img img {
  width: 100%;
}

.post_wrap.style-2 .post_info,
.post_wrap.style-2 .post_img {
  margin: 0;
}
.pagination_wrap {
  padding: 10px 0;
}
.pagination {
  text-align: center;
  display: block;
}
.pagination li {
  display: inline-block;
  margin: 0 4px;
}
.pagination li a,
.page-item:last-child .page-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 38px;
  border: #ebeced solid 2px;
  color: #b7bdc5;
  font-weight: 500;
  padding: 0;
  font-size: 14px;
}
.pagination li a:hover,
.page-item:last-child .page-link:hover,
.page-item.disabled .page-link {
  color: #fff;
  border: #4196ff solid 1px;
  background: #4196ff;
  border-radius: 50%;
}

/*-------------------
	9.2. Post-format- Type
---------------------*/

/*  post format Video */

.post_wrap.post-format-video .post_img .sigma_video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*  post format Gallery */

.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-prev,
.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4196ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  font-size: 0;
}

.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-prev:hover,
.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-next:hover {
  background-color: #0672f8;
}

.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-next {
  right: 10px;
  left: auto;
}

.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-prev:before,
.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-next:before {
  content: "\f053";
  font-family: FontAwesome;
  font-size: 16px;
}

.post_wrap.post-format-gallery .owl-carousel .owl-nav .owl-next:before {
  content: "\f054";
}

.post_wrap.post-format-gallery .owl-carousel:hover .owl-nav .owl-prev {
  opacity: 1;
  visibility: visible;
  left: 20px;
}
.post_wrap.post-format-gallery .owl-carousel:hover .owl-nav .owl-next {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

/*  post format Audio */

.post_wrap.post-format-audio {
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 25px;
}
.post_wrap.post-format-audio .embed-responsive-16by9::before {
  padding-top: 16.25%;
}

/*  post format Link */

.post_wrap.post-format-link .post_info {
  background: #151525;
  padding: 50px;
  position: relative;
  margin: 0;
}

.post_wrap.post-format-link .post_info p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.post_wrap.post-format-link .post_info .post_meta a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
}

.post_wrap.post-format-link .post_info .post_meta a i {
  margin-right: 10px;
  font-size: 20px;
}

.post_wrap.post-format-link .post_info .post_meta a:hover {
  color: #4196ff;
}

/*---------------
	9.3. Sidebar
--------------------*/
.sidebar_wrap {
  padding-left: 30px;
}
.sidebar_widget {
  padding: 50px 0;
  overflow: hidden;
}
.sidebar_widget ul {
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.widget_title {
  margin: 0 auto 35px;
  text-align: center;
}
.widget_title h4 {
  display: inline-block;
  margin: 0 auto;
  font-size: 28px;
  position: relative;
}
.widget_title h4:after {
  position: absolute;
  top: 16px;
  left: -60px;
  width: 40px;
  content: "";
  height: 2px;
  background: #e6e6e6;
}
.widget_title h4:before {
  position: absolute;
  top: 16px;
  right: -60px;
  width: 40px;
  content: "";
  height: 2px;
  background: #e6e6e6;
}
.sidebar_widget .form-control {
  border-radius: 0;
}
.search_widget.sidebar_widget .form-control {
  padding-right: 70px;
}
.sidebar_widget form {
  position: relative;
}
.search_btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #4196ff;
  border: 0;
  color: #fff;
  height: 100%;
  padding: 10px 25px;
  cursor: pointer;
}
.followus_widget ul {
  text-align: center;
}
.followus_widget ul li {
  display: inline-block;
}
.followus_widget ul li a {
  display: block;
  width: 40px;
  height: 40px;
  border: #e3e3e3 solid 1px;
  border-radius: 50px;
  text-align: center;
  line-height: 38px;
  color: #b5b5b5;
  margin: 0 2px;
}
.followus_widget ul li a:hover {
  background: #4196ff;
  border-color: #4196ff;
  color: #fff;
}
.categories_widget ul li {
  margin: 0 auto;
}
.categories_widget ul li a {
  display: block;
  overflow: hidden;
  color: #696393;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: #e6e5e5 solid 1px;
}
.categories_widget ul li a span {
  float: right;
}
.categories_widget ul li a:hover {
  color: #4196ff;
}
.popular_widget li {
  position: relative;
  padding-left: 100px;
  overflow: hidden;
  margin: 0 auto 20px;
}
.post_thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 80px;
  background: #000;
}
.post_thumb img {
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.post_thumb img:hover {
  opacity: 0.7;
}
.popular_widget h6 {
  font-size: 16px;
  margin: 0 0 6px;
}
.popular_widget h6 a {
  color: #0e073c;
}
.popular_widget p {
  color: #696393;
  font-size: 14px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}
.popular_widget h6 a:hover {
  color: #4196ff;
}
.tag_cloud {
  overflow: hidden;
}
.tag_cloud a {
  display: inline-block;
  padding: 4px 20px;
  border: #eaeaea solid 1px;
  color: #696393;
  font-size: 13px;
  letter-spacing: 0.2px;
  margin: 0 10px 10px 0;
}
.tag_cloud a:hover {
  background: #4196ff;
  color: #fff;
  border-color: #4196ff;
}
.instagram_widget li {
  float: left;
  width: 30%;
  margin-right: 4%;
  margin-bottom: 13px;
}
.instagram_widget li:nth-child(3n) {
  margin-right: 0;
}

/*------------------
 sidebar 2
---------------------*/

.sidebar_wrap.sidebar-2 .sidebar_widget {
  padding: 40px;
  background-color: #f8f8f8;
}

.sidebar_wrap.sidebar-2 .sidebar_widget + .sidebar_widget {
  margin-top: 30px;
}

.sidebar_wrap.sidebar-2 .widget_title {
  margin: 0 0 20px;
  text-align: left;
}

.sidebar_wrap.sidebar-2 .widget_title h4 {
  font-size: 18px;
}

.sidebar_wrap.sidebar-2 .widget_title h4:before,
.sidebar_wrap.sidebar-2 .widget_title h4:after {
  content: none;
}

.sigma_list-item + .sigma_list-item {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #efefef;
}

.sigma_list-item label {
  display: block;
  margin: 0;
  color: #36353a;
}

.sidebar_wrap.sidebar-2 .sidebar_widget.categories_widget ul li a {
  background-color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
}
.sidebar_wrap.sidebar-2 .sidebar_widget.categories_widget ul li + li {
  margin-top: 20px;
}

.sidebar_wrap.sidebar-2 blockquote {
  padding: 30px;
  margin: 0;
}

.sidebar_wrap.sidebar-2 blockquote::after {
  top: 28%;
  right: 25px;
  left: auto;
}

.sidebar_widget.categories_widget ul li a.justify-content-start i {
  color: #4196ff;
}

/*=======================
	10. Blog-Detail
===============================*/
/*------------------
	10.1 Blog-content
---------------------*/
.post_content p {
  line-height: 26px;
}
.post_tags,
.post_share {
  padding: 30px 0;
}
.post_tags a {
  display: inline-block;
  vertical-align: top;
  padding: 10px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 500;
  color: #9494b2;
  font-size: 13px;
  margin: 0 5px 5px 0;
  border: #e5e5e5 solid 2px;
}
.post_share {
  text-align: right;
}
.post_share a {
  color: #b5becc;
  font-size: 20px;
  margin-left: 13px;
  padding: 3px 0 3px 7px;
  display: inline-block;
}
.post_tags a:hover {
  background: #4196ff;
  color: #fff;
  border-color: #4196ff;
}
.post_share a:hover {
  color: #4196ff;
}

.post_content .gallery-thumb {
  overflow: hidden;
  display: block;
  margin-bottom: 25px;
}

.post_content .gallery-thumb img {
  width: 100%;
  transition: 0.3s;
}

.post_content .gallery-thumb:hover img {
  transform: scale(1.1);
}

.sigma_single-pagination {
  margin: 0 0 25px;
  display: flex;
}

.sigma_single-pagination-prev,
.sigma_single-pagination-next {
  padding: 15px;
  background-color: #36353a;
  transition: 0.3s;
  flex: 1;
}

.sigma_single-pagination-prev:hover,
.sigma_single-pagination-next:hover {
  background-color: #4196ff;
}

.sigma_single-pagination a {
  display: flex;
  align-items: center;
}

.sigma_single-pagination-next a {
  justify-content: flex-end;
}
.sigma_single-pagination i {
  color: #777;
  margin: 0 20px;
  transition: 0.3s;
}

.sigma_single-pagination-prev:hover i {
  transform: translateX(-3px);
}
.sigma_single-pagination-next:hover i {
  transform: translateX(3px);
}
.sigma_single-pagination a h6 {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.sigma_single-pagination span {
  color: #d2d2d2;
}

.sigma_single-pagination-prev:hover i,
.sigma_single-pagination-next:hover i,
.sigma_single-pagination-prev:hover span,
.sigma_single-pagination-next:hover span {
  color: #fff;
}

/*-------------------
	10.2. Comments
-----------------------*/
.comment-respond,
.all_comments {
  border-top: #eaeaea solid 1px;
  padding-top: 30px;
}
.all_comments {
  margin: 20px auto 50px;
}
.all_comments ul {
  padding: 0px;
  margin: 0 auto;
  list-style: none;
}
.all_comments ul li ul,
.all_comments ul li ol {
  list-style: none;
}
.comment-avatar {
  width: 100px;
  border-radius: 50%;
  margin-right: 20px;
  float: left;
  overflow: hidden;
  height: 100px;
}
.comment-content {
  float: right;
  width: calc(100% - 130px);
}
.comment-author a {
  color: #0e073c;
  font-weight: 500;
  font-size: 18px;
}
.comment-time {
  color: #4196ff;
  font-size: 14px;
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 auto 5px;
}
.comment-meta {
  margin: 0 auto 10px;
}
.comment-text p {
  line-height: 24px;
  margin: 0 auto 15px;
  color: #696393;
  font-size: 14px;
}
.reply {
  float: right;
}
.reply a {
  color: #aca8c9;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.reply a:hover {
  color: #4196ff;
}
.comment.the-comment {
  overflow: hidden;
  margin: 0 auto 40px;
}
.commentlist .comment ol {
  padding-left: 90px;
  margin: 0 auto;
}
.commentlist .comment ol li:last-child .comment-content {
  padding-bottom: 0;
  border: 0;
}
#comments h4 {
  margin: 10px 0 40px;
  font-size: 26px;
}
.comment-form .form-control {
  border-radius: 0;
  border: #e5e5e5 solid 2px;
  background: #fff;
  padding: 15px 25px;
}
.form-group div {
  position: relative;
}
.msg_input::after {
  position: absolute;
  top: 16px;
  right: 24px;
  content: "\f040";
  color: #4196ff;
  font-size: 17px;
  font-family: fontawesome;
}
.name_input::after {
  position: absolute;
  top: 16px;
  right: 24px;
  content: "\f007";
  color: #4196ff;
  font-size: 17px;
  font-family: fontawesome;
}
.email_input::after {
  position: absolute;
  top: 16px;
  right: 24px;
  content: "\f0e0";
  color: #4196ff;
  font-size: 17px;
  font-family: fontawesome;
}
.web_input::after {
  position: absolute;
  top: 16px;
  right: 24px;
  content: "\f0ac";
  color: #4196ff;
  font-size: 17px;
  font-family: fontawesome;
}

/*================
	11. Services
=======================*/
.service_box {
  background: #fff;
  margin: 0 auto 10px;
  padding: 35px;
  box-shadow: rgb(0, 0, 0, 0.1) 0 9px 15px;
  border-bottom: #d3e7ff solid 9px;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.service_box:hover {
  border-color: #4196ff;
}
.service_box h3 {
  font-size: 30px;
}
.service_box p {
  line-height: 26px;
}
.icon_wp {
  margin: 0 auto 35px;
}
.service_box h3 a {
  color: #0e073c;
}
.service_box h3 a:hover {
  color: #4196ff;
}
.dots_bg {
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
  position: relative;
}
.dots_bg:after {
  position: absolute;
  bottom: -40px;
  content: "";
  background: url(../images/dot_bg.png) no-repeat center;
  width: 100%;
  left: -40px;
  height: 100%;
  z-index: -1;
}
.sub-heading {
  font-size: 16px;
  color: #4196ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about_company {
  padding: 40px 0 20px 20px;
}
.about_company p {
  font-size: 14px;
  line-height: 24px;
}
.about_company h3 {
  letter-spacing: -0.5px;
}
.intro_video {
  background: url(../images/video-bg.jpg) no-repeat 0 0 / 115% 450px;
}
.video_wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 20px;
}
.video_wrap .sigma_video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* --- intro-video-2 ---*/

.intro_video-2.section-padding {
  padding: 80px 0;
}

.intro_video-2 .sigma_video-btn {
  margin: 0;
}

.intro_video-2 .info_box {
  background-color: #0e073c;
  border: 0;
  position: relative;
  bottom: -140px;
}

.intro_video-2 .info_box span {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.intro_video-2 .info_box span .counter {
  color: #fff;
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
}

.intro_video-2 .info_box span .plus {
  font-size: 40px;
  color: #fff;
  margin-bottom: 0;
}

.intro_video-2 .info_box p {
  font-size: 20px;
  color: #fff;
  font-style: italic;
  margin-bottom: 0;
}
.intro_video-2 .info_box:hover {
  background-image: none;
  background-color: #0e073c;
}

/* --- video-general-styling ---*/

.sigma_video-btn {
  width: 90px;
  height: 90px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.sigma_video-btn:hover {
  background-color: #4196ff;
  color: #fff;
}

.sigma_video-btn:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  animation-name: pulseInOut;
  opacity: 0;
  border-radius: 50%;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.sigma_video-btn:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  animation-name: pulseInOut;
  opacity: 0;
  border-radius: 50%;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
}

/*=================
	12. General List
==========================*/

.sigma_general-list {
  position: relative;
  background-color: #f8f8f8;
  padding: 20px;
  margin-bottom: 30px;
}

.sigma_general-list ul {
  padding: 0;
}

.sigma_general-list ul li {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
  margin-bottom: 0;
}

.sigma_general-list ul li + li {
  margin-top: 20px;
}

.sigma_general-list ul li i {
  width: 40px;
  height: 40px;
  background-color: #4196ff;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(102, 205, 162, 0.5);
}

.sigma_general-list ul li span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding-left: 20px;
  flex: 1;
}

/* Style 2 */

.sigma_general-list.style-2 ul li,
.sigma_general-list.style-3 ul li {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

/* Style 3 */

.sigma_general-list.style-3 ul li i {
  background-color: transparent;
  color: #4196ff;
  box-shadow: none;
  width: auto;
  height: auto;
}

/*=================
	13. About-Us
==========================*/
.info_box {
  text-align: center;
  border: #f2f2f2 solid 8px;
  padding: 60px 30px;
  transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.info_box:hover {
  background: url(../images/box_bg.jpg) no-repeat center / cover;
}
.icon {
  margin: 0 auto 40px;
}
.round-btn {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  text-align: center;
  background: #f4f4f4;
  color: #8f86ca;
  font-size: 15px;
  display: inline-block;
  border-radius: 50%;
  line-height: 60px;
}
.round-btn:hover {
  background: #4196ff;
  color: #fff;
}
.fun_facts {
  background: url(../images/facts_bg.jpg) no-repeat center / cover;
}
.facts_wrap {
  text-align: center;
}
.facts_wrap i {
  color: #4196ff;
  font-size: 60px;
  margin: 0 auto 20px;
}
.counter {
  display: block;
  color: #0e073c;
  font-size: 60px;
  line-height: 70px;
}
.facts_wrap p {
  color: #78789f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 auto;
  font-weight: 500;
}
.testimonial_box {
  background: #fff;
}
.testimonial_box {
  background: #fff;
  padding: 35px 40px;
  box-shadow: rgba(0, 0, 0, 0.07) 0 0 18px;
  position: relative;
}
.testimonial_box p {
  font-size: 14px;
  line-height: 24px;
}
.stars {
  margin: 0 auto 10px;
}
.stars i {
  font-size: 20px;
  margin-right: 4px;
}
.stars .active {
  color: #ffcc00;
}
.testimonial_author {
  position: relative;
}
.owl-carousel .owl-item .testimonial_author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}
.testimonial_author h5 {
  margin: 0 auto 5px;
}
.testimonial_author p {
  font-size: 15px;
  color: #4196ff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}
#testimonials {
  margin: -16px;
}
#testimonials .item {
  padding: 16px;
}
.owl-dots {
  text-align: center;
}
.owl-dots div {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.owl-dots div.active {
  background: #4196ff;
}
.testimonial_author::after {
  position: absolute;
  top: 26px;
  right: 50px;
  content: "\f10d";
  font-family: fontawesome;
  font-size: 130px;
  opacity: 0.05;
}

/*------- About-Us style 2 --------*/

.sigma_about {
  position: relative;
}

.sigma_about .sigma_about-content .important-text {
  padding: 20px;
  background-color: #ecfff9;
  margin-bottom: 30px;
}

.sigma_about .sigma_general-list {
  padding: 0;
  background-color: #fff;
  margin: 25px 0 30px;
}

.sigma_about .sigma_about-image-1,
.sigma_about .sigma_about-image-2 {
  border: 8px solid #4196ff;
  padding: 5px;
  border-radius: 50%;
}

.sigma_about .sigma_about-image-1 img,
.sigma_about .sigma_about-image-2 img {
  border-radius: 50%;
  width: 100%;
}

.sigma_about .sigma_about-image-2 {
  position: absolute;
  bottom: 30px;
  left: -15px;
}

.sigma_about.style-3 .sigma_about-image-1,
.sigma_about.style-3 .sigma_about-image-2 {
  border-radius: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
}

.sigma_about.style-3 .sigma_about-image-2 {
  right: 0;
  left: auto;
  bottom: -125px;
  z-index: 1;
}

.sigma_about.style-3 .sigma_about-image-1 img,
.sigma_about.style-3 .sigma_about-image-2 img,
.sigma_about.style-4 .sigma_about-image-1 img {
  width: auto;
  border-radius: 0;
}

.sigma_about.style-3 .sigma_about-exp {
  color: #000;
  display: block;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  position: absolute;
  top: 75px;
  right: -36px;
  transform: rotate(270deg);
  background-color: #fff;
  padding: 10px;
}

.sigma_about.style-3 .sigma_video-btn {
  position: absolute;
  left: 10px;
  bottom: -104px;
  width: 80px;
  height: 80px;
  background-color: #4196ff;
  color: #fff;
  z-index: 1;
}

.sigma_about.style-3 .sigma_video-btn:hover,
.sigma_about.style-4 .sigma_video-btn:hover {
  background-color: #0672f8;
}

.sigma_about.style-3 .sigma_general-list ul,
.sigma_about.style-4 .sigma_about-list {
  column-count: 2;
}

.sigma_about.style-3 .sigma_general-list ul li i {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

/*===================
	14. Gallery
==========================*/
.galleryFilter {
  position: relative;
  text-align: center;
  padding: 15px 20px;
  background: #4196ff;
  margin: 0 auto 70px;
}
.galleryContainer {
  margin: 0 -15px;
}
.galleryContainer div {
  margin: 0 15px 30px;
  text-align: center;
}
.galleryContainer div img {
  display: block;
  margin: 0 auto;
}
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */

  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
}
.galleryFilter::before {
  position: absolute;
  left: 40px;
  right: 40px;
  margin: 0 auto;
  content: "";
  bottom: -20px;
  background: rgba(65, 150, 255, 0.2);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 20px;
  z-index: -2;
}
.galleryFilter::after {
  position: absolute;
  left: 20px;
  right: 20px;
  margin: 0 auto;
  content: "";
  bottom: -10px;
  background: rgba(65, 150, 255, 0.6);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 20px;
  z-index: -1;
}
.galleryFilter a {
  display: inline-block;
  padding: 8px 5px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #cae2ff;
  margin: 0 20px;
}
.galleryFilter a.current {
  color: #fff;
}

/*==============
	15. Pricing
=====================*/

.sigma_pricing {
  padding: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  text-align: center;
  transition: 0.3s;
}

.sigma_pricing:hover {
  transform: translateY(-10px);
}

.sigma_pricing .sigma_pricing-top span {
  margin-bottom: 10px;
}

.sigma_pricing .sigma_pricing-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4196ff;
  background-color: #0e073c;
  font-size: 35px;
  margin: 0 auto;
}

.sigma_pricing .sigma_pricing-title {
  display: block;
  color: #0e073c;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.sigma_pricing .sigma_pricing-rate {
  display: block;
  color: #0e073c;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
}

.sigma_pricing .sigma_general-list {
  background-color: transparent;
  padding: 0;
  margin: 18px 0 25px;
}

.sigma_pricing .sigma_general-list ul {
  padding: 0;
}

.sigma_pricing .sigma_general-list ul li span {
  flex: none;
  padding-left: 10px;
}

.sigma_pricing .sigma_general-list ul li {
  justify-content: center;
}

.sigma_pricing .sigma_general-list ul li + li {
  margin-top: 10px;
}

/*==============
	16. Footer
=====================*/
.sigma_footer {
  padding: 80px 0 0;
}

.sigma_footer .sigma_footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  padding: 0;
}

.sigma_footer .sigma_footer-links li {
  margin-bottom: 0;
}

.sigma_footer .sigma_footer-links li + li {
  margin-left: 20px;
}

.sigma_footer .sigma_footer-links li a {
  color: #696393;
  font-weight: 600;
}

.sigma_footer .sigma_footer-links li a:hover,
.sigma_footer .sigma_footer-copyright p a:hover {
  color: #4196ff;
}

.sigma_footer .sigma_footer-copyright {
  margin-top: 25px;
}

.sigma_footer .sigma_footer-copyright p a {
  color: #333;
  font-weight: 600;
}

.sigma_footer .sigma_footer-bottom {
  border-top: 1px solid #e1e1e1;
  padding: 30px 0;
  margin-top: 30px;
  text-align: center;
}

.sigma_footer form span {
  opacity: 0.5;
  font-size: 14px;
  display: block;
  margin-top: 8px;
}

.sigma_footer .sigma_footer-widget .widget-title {
  margin-bottom: 20px;
}

.sigma_footer .sigma_footer-widget {
  padding-bottom: 50px;
  height: 100%;
}

.follow_us {
  padding: 0;
  list-style: none;
  margin: 0;
}
.follow_us li {
  display: inline-block;
  margin: 0;
}
.follow_us li a {
  display: block;
  width: 60px;
  height: 60px;
  background: #4196ff;
  text-align: center;
  line-height: 60px;
  color: #fff;
  border-radius: 50%;
}
.follow_us li a:hover {
  background: #0672f8;
  color: #fff;
}

/* ----  Style  3 ---- */

.sigma_footer.style-3 .sigma_footer-links {
  flex-direction: column;
  align-items: start;
  margin: 0;
}

.sigma_footer.style-3 .sigma_footer-links li + li {
  margin-left: 0;
  margin-top: 14px;
}

/*=====================
	15. Responsive-CSS
==========================*/
@media (min-width: 991px) and (max-width: 1200px) {
  .sigma_header .navbar-nav li a {
    padding: 30px 12px;
  }

  .intro_text h1 {
    line-height: 70px;
  }
  .section-padding {
    padding: 100px 0;
  }
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 52px;
  }
  h3 {
    font-size: 36px;
  }
  .blue_box {
    padding: 50px 64px;
    top: inherit;
    left: 0;
    bottom: -130px;
  }
  .angels_list {
    padding: 50px 8%;
  }
  .angels_list h2 {
    font-size: 32px;
    margin: 0 auto 20px;
    line-height: 38px;
  }
  .angels_list .nav-tabs li a p {
    font-size: 17px;
  }
  .angels_list .nav-tabs li a {
    padding: 4px 0;
  }
  .contact_info {
    padding: 60px 36px;
  }
  .follow_us ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .form-control {
    font-size: 13px;
    min-height: 52px;
    padding: 10px 30px;
  }
  .btn {
    padding: 12px 40px;
    font-size: 14px;
  }
  .contact_info ul li {
    padding: 20px 0;
  }
  .direction_btn a {
    padding: 22px 10px;
    margin: 0 -36px -60px;
  }
  .map_wp iframe {
    height: 550px;
  }
  .about_company {
    padding: 0px 0 20px 20px;
  }
  .counter {
    font-size: 50px;
  }
  .post_tags a {
    padding: 2px 10px;
  }
  .portfolio_info {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px;
  }
}

@media (max-width: 991px) {
  /* header style 2 */

  .sigma_header .aside-toggle {
    display: flex;
  }

  .sigma_header .navbar-nav,
  .sigma_header .aside-toggle.desktop-toggler {
    display: none;
  }

  .sigma_aside-overlay.aside-trigger,
  .sigma_aside:not(.sigma_aside-desktop) {
    display: block;
  }

  .sigma_aside-overlay.aside-trigger-right,
  .sigma_aside.sigma_aside-desktop {
    display: none;
  }

  .aside-open .sigma_aside-desktop:not(.sigma_aside) + .sigma_aside-overlay,
  .aside-right-open .sigma_aside-desktop + .sigma_aside-overlay {
    opacity: 0;
    visibility: hidden;
  }

  /* About style 3 */

  .sigma_about.style-3 .sigma_about-image-2 {
    position: relative;
    bottom: 0;
    text-align: right;
    margin-top: -125px;
  }

  .sigma_about.style-3 .sigma_video-btn {
    left: 60px;
    bottom: 60px;
  }

  /* About style 4 */

  .sigma_about.style-4 .sigma_about-image-1 img {
    width: 100%;
  }

  .sidebar_wrap.sidebar-2 {
    margin-top: 50px;
  }

  .intro_video-2 .info_box {
    bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 33px;
  }
  .section-header h5 {
    font-size: 22px;
  }
  .intro_text h1 {
    line-height: 50px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 33px;
  }
  .section-padding {
    padding: 100px 0;
  }
  .service_box {
    padding: 25px;
  }
  .service_box h3 {
    font-size: 25px;
  }
  .blue_box {
    padding: 30px 24px 10px;
    position: relative;
    top: 0;
    left: 0;
  }
  .angels_list {
    padding: 30px 8%;
  }
  .angels_list h2 {
    font-size: 25px;
    margin: 0 auto 20px;
    line-height: 32px;
  }
  .angels_list .nav-tabs li a p {
    min-width: 150px;
    font-size: 16px;
  }
  .angels_list .nav-tabs li a {
    padding: 0 0;
    font-size: 26px;
  }
  .form_wrap {
    padding: 60px 30px 60px 0px;
  }
  .contact_info ul li {
    padding: 20px 0;
  }
  .direction_btn a {
    font-size: 13px;
    padding: 23px 10px;
    margin: 0 -20px -40px;
  }
  .map_wp iframe {
    height: 480px;
  }
  h6 {
    font-size: 18px;
  }
  .long_arrow h6 {
    padding-right: 30px;
  }
  .nesletter_form button {
    right: 15px;
  }
  .nesletter_form .form-control {
    padding-right: 25px;
  }
  .follow_us ul li a {
    width: 33px;
    font-size: 14px;
    height: 33px;
    line-height: 33px;
  }
  .footer_widget {
    margin: 70px 0;
  }
  .contact_info {
    padding: 40px 20px;
  }
  .info_box {
    padding: 30px 20px;
    margin: 0 auto 15px;
  }
  .icon {
    margin: 0 auto 20px;
  }
  .facts_wrap {
    margin: 20px auto;
  }
  .facts_wrap i {
    font-size: 50px;
  }
  .counter {
    font-size: 50px;
  }
  .about_company {
    padding: 0;
  }
  .testimonial_box {
    padding: 25px;
  }
  .testimonial_author h5 {
    font-size: 22px;
  }
  .sidebar_wrap {
    padding-left: 0;
  }
  .post_info {
    padding: 25px;
    margin: 0 13px;
  }
  .sidebar_widget {
    padding: 30px 0;
  }
  .widget_title h4 {
    font-size: 24px;
  }
  .post_info h5 {
    font-size: 22px;
  }
  .followus_widget ul li a {
    width: 34px;
    height: 34px;
    line-height: 32px;
    margin: 0 0px;
  }
  .popular_widget h6 {
    font-size: 14px;
    margin: 0 auto;
  }
  .popular_widget p {
    font-size: 12px;
  }
  .tag_cloud a {
    padding: 2px 10px;
    margin: 0 5px 5px 0;
  }
  .post_tags a {
    padding: 1px 7px;
    font-size: 12px;
    border-width: 1px;
  }
  .post_tags h6,
  .post_share h6 {
    margin: 0 auto 10px;
  }

  .portfolio_info {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px;
  }
  .portfolio_info h4 {
    font-size: 20px;
  }
  .portfolio_category {
    margin: 0 auto 1px;
  }
  .move_btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 15px;
  }
  .video_icon {
    padding: 115px 0;
  }
}

@media (max-width: 767px) {
  /* About style 3 */

  .sigma_about.style-3 .sigma_about-exp {
    top: 34px;
    right: -36px;
  }
  .intro_text {
    padding: 150px 0;
  }
  h1 {
    font-size: 40px;
  }
  h2,
  .quick_start h2,
  .angels_list h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  .service_box h3 {
    font-size: 25px;
  }
  .intro_text h1 {
    margin: 0 auto 30px;
    line-height: 45px;
  }
  .intro_text h5,
  .section-header h5 {
    font-size: 21px;
  }
  .btn {
    font-size: 13px;
    padding: 8px 20px;
  }
  .btn.btn-lg {
    font-size: 14px;
    padding: 12px 45px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .service_box {
    padding: 25px;
  }
  p {
    font-size: 15px;
  }
  .blue_box {
    max-width: inherit;
    padding: 35px 30px;
    top: 0;
    left: 0;
    position: relative;
  }
  .img_wp {
    margin: 0 auto 25px;
  }
  .blue_box h6 {
    margin: 0 auto 24px;
  }
  .blue_box h4 {
    line-height: 32px;
    margin-bottom: 20px;
  }
  .sponsors a {
    padding: 10px 25px;
    max-width: 49%;
  }
  .contact_info {
    padding: 40px 30px;
  }
  .contact_info ul li {
    padding: 15px 0;
  }
  .direction_btn a {
    padding: 12px 10px;
    margin: 0 -24px -34px;
  }
  .form_wrap {
    padding: 30px;
  }
  .form-control {
    min-height: 50px;
    line-height: 33px;
    padding: 10px 20px;
  }
  .map_wp iframe {
    height: 420px;
  }
  .footer_wd_title {
    margin: 0 auto 15px;
  }
  .footer_widget {
    margin: 60px 0 0;
  }
  .follow_us {
    margin: 0 auto 60px;
  }

  #menu_slide {
    display: block;
    float: right;
  }
  #menu_slide {
    display: block;
    float: right;
    width: 46px;
    height: 46px;
    cursor: pointer;
    background: #4196ff;
    border: 0;
    border-radius: 50%;
    text-align: center;
  }
  .icon-bar {
    display: block;
    height: 1px;
    background: #fff;
    margin: 6px auto;
    max-width: 78%;
  }

  .inner_intro {
    padding: 100px 0;
  }
  .info_box {
    margin: 0 auto 20px;
    padding: 30px 20px;
  }
  .icon {
    margin: 0 auto 20px;
  }
  .facts_wrap {
    margin: 0 auto 40px;
  }
  .facts_wrap i {
    font-size: 42px;
    margin: 0 auto 15px;
  }
  .counter {
    font-size: 44px;
    line-height: 50px;
  }
  .about_company {
    padding: 40px 0 0;
  }

  .post_info {
    padding: 18px;
    margin: 0 10px;
  }
  .post_info h5 {
    font-size: 22px;
  }
  .post_categorys a {
    padding: 1px 16px;
  }
  .sidebar_wrap {
    padding-left: 0;
  }
  .sidebar_widget {
    padding: 50px 0 0;
  }
  .widget_title {
    margin: 0 auto 20px;
  }
  .widget_title h4 {
    font-size: 24px;
  }
  .post_tags,
  .post_share {
    padding: 10px 0;
    text-align: left;
  }
  .post_tags a {
    padding: 3px 12px;
    font-size: 12px;
  }
  .post_tags h6,
  .post_share h6 {
    margin: 0 auto 10px;
  }
  .comment-avatar {
    width: 50px;
    margin-right: 10px;
    height: 50px;
  }
  .comment-content {
    width: calc(100% - 60px);
  }
  .comment-form .form-control {
    padding: 15px;
  }
  .form-group div::after {
    top: 10px;
  }

  .faq_search .form-control {
    height: 63px;
    padding: 10px 110px 10px 20px;
  }
  .faq_box {
    padding: 25px;
  }
  .portfolio_info {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 16px;
  }
  .portfolio_info h4 {
    font-size: 20px;
  }
  .portfolio_category {
    margin: 0 auto 1px;
  }
  .move_btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    right: 15px;
  }
  .video_icon {
    padding: 65px 0;
  }
  .angels_list .nav-tabs li a {
    padding: 1px 0;
  }
  .angels_list .nav-tabs li a p {
    min-width: auto;
    font-size: 16px;
  }
  .angels_list .nav-tabs li a span {
    font-size: 12px;
  }
  .quick_start h2,
  .angels_list h2 {
    font-size: 30px;
    line-height: 34px;
  }
}

@media (max-width: 576px) {
  /* About style 3 */

  .sigma_about.style-3 .sigma_general-list ul,
  .sigma_about.style-4 .sigma_about-list {
    column-count: 1;
  }

  /* portfolio detail */
  .sigma_single-pagination {
    display: block;
  }

  .sigma_single-pagination-item + .sigma_single-pagination-item {
    margin-top: 20px;
  }

  .intro_video {
    background: none;
    padding-top: 0;
  }

  /* post format */
  .post_wrap.post-format-audio .embed-responsive-16by9::before {
    padding-top: 50%;
  }
  .post_img {
    margin: 0 auto -50px;
  }
}
