about-area__contentimport url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900;1000&display=swap");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;}

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
    font-family: "Mulish", sans-serif;
}

body {
  color: #000;
  line-height: 1.5;
  margin: 0;
    font-family: "Mulish", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
}

a {
  color: #ca3c08;
  text-decoration: none;
}

a:visited {
  color: #ac0404;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  color: #ea9629;
  outline: 0;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
    font-family: "Mulish", sans-serif;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  margin: 33px 0;
}

h2 {
  font-size: 30px;
  margin: 25px 0;
}

h3 {
  font-size: 22px;
  margin: 22px 0;
}

h4 {
  font-size: 20px;
  margin: 25px 0;
}

h5 {
  font-size: 18px;
  margin: 30px 0;
}

h6 {
  font-size: 16px;
  margin: 36px 0;
}

address {
  font-style: italic;
  margin: 0 0 24px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

p {
  margin: 0 0 24px;
}

menu,
ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

ul {
  list-style-type: square;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

li > ul,
li > ol {
  margin: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  min-width: inherit;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  padding-right: 2px;
  /* Don't cut off the webkit search cancel button */
  width: 270px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

caption {
  font-size: 16px;
  margin: 20px 0;
}

th {
  font-weight: bold;
  text-transform: uppercase;
}

td {
  border-top: 1px solid #ededed;
  padding: 6px 10px 6px 0;
}

del {
  color: #333;
}

ins {
  background: #fff9c0;
  text-decoration: none;
}

hr {
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
  color: #7d7b6d;
}

:-moz-placeholder {
  color: #7d7b6d;
}

::-moz-placeholder {
  color: #7d7b6d;
}

:-ms-input-placeholder {
  color: #7d7b6d;
}

/* Addition media query */

  .container {
    max-width: 1280px;
   width: 100%;
  }

.loder {
     display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    animation-delay: 1s;
    background: #000000cf;
    position: fixed;
    z-index: 9999;
}  

/*============== loading Script  ==============
  ========================================= */

.loader i {
    position: relative;
    display: inline-block;
    margin: 0 4px;
    width: 5px;
    height: 15px;
    border-radius: 2px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    background: #fff;
    animation: tilt infinite 5s cubic-bezier(0.955, -0.010, 1.fff, 1.ff);
    transform-origin: 100% 100%;
}
 .loader i::before {
 content: '';
 position: absolute;
 z-index: -1;
 bottom: 0;
 display: block;
 width: 5px;
 height: 5px;
 background: transparent;
 box-shadow: 0 2px rgba(0, 0, 0, .3);
 animation: stretch infinite 5s cubic-bezier(0.955, -0.010, 1.fff, 1.fff);
 opacity: 0;
 transform-origin: 0% 0%;
}
 .loader i:nth-child(2), .loader i:nth-child(2)::before {
 animation-delay: .3s;
}
 .loader i:nth-child(3), .loader i:nth-child(3)::before {
 animation-delay: .6s;
}
 .loader i:nth-child(4), .loader i:nth-child(4)::before {
 animation-delay: .9s;
}
 .loader i:nth-child(5), .loader i:nth-child(5)::before {
 animation-delay: 1.2s;
}
.loader i:last-of-type {
    animation-name: tilt-last;
}
 .loader i:last-of-type::before {
 animation-name: stretch-last;
}
 @keyframes tilt {
 10% {
transform: rotate(70deg)
}
 60% {
transform: rotate(70deg)
}
 70% {
transform: rotate( 0deg)
}
}
 @keyframes tilt-last {
 10% {
transform: rotate(90deg)
}
 60% {
transform: rotate(90deg)
}
 70% {
transform: rotate( 0deg)
}
}
 @keyframes stretch {
 10% {
transform: rotate(-70deg);
width: 10px;
opacity: 1;
left: 0px;
bottom: -1px;
}
 60% {
transform: rotate(-70deg);
width: 10px;
opacity: 1;
}
 70% {
width: 5px;
transform: rotate(0deg);
opacity: 0;
}
}
 @keyframes stretch-last {
 10% {
transform: rotate(-90deg);
width: 10px;
height: 2px;
opacity: .5;
left: 3px;
bottom: -1px;
}
 60% {
transform: rotate(-90deg);
width: 10px;
height: 2px;
opacity: .5;
}
 70% {
transform: rotate(0deg);
width: 5px;
height: 5px;
opacity: 0;
}
}
.loader {
    position: absolute;
    display: block;
    margin: auto;
    padding: 0;
    width: 100px;
    height: 15px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}
.load-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
}




/*loder 2*/




.holder{
  width: 80px;
  border: 2px solid #fff;
  margin: 300px auto;
  position: relative;
  
}
.holder h1{
  text-align: center;
  font-size: 54px;
  padding: 10px;
}
.box-1,
.box-2{
  position: absolute;
  background: #fff;
  width: 15px;
  height: 15px;
}
.box-1{
  top: -14.5px;
  left: -14.5px;
  animation: boxOne 3s infinite;
}
.box-2{
  bottom: -14.5px;
  right: -14.5px;
  animation: boxTwo 3s infinite;
}
@keyframes boxOne{
  0%{
    left: -14.5px;
  }
  25%{
    left: 80px;
    top: -14.5px;
    transform: rotate(90deg);
  }
  50%{
    top: 73.5px;
    left: 80px;
  }
  75%{
    left: -14.5px;
    top: 73.5px;
  }
  100%{
    top: -14.5px;
  }
}

@keyframes boxTwo{
  0%{
    right: -14.5px;
  }
  25%{
    right: 80px;
    bottom: -14.5px;
    transform: rotate(90deg);
  }
  50%{
    bottom: 73.5px;
    right: 80px;    
  }
  75%{
    right: -14.5px;
    bottom: 73.5px;    
  }
  100%{
    right: -14.5px;
  }
}

/**
Typography Styles
*/
html {
  overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-size: 16px;
    line-height: 32px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
      font-family: "Mulish", sans-serif;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0.5px;
}

img {
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #afafaf;
  font-size: 16px;
}

:-moz-placeholder {
  color: #afafaf;
  font-size: 16px;
}

::-moz-placeholder {
  color: #afafaf;
  font-size: 16px;
}

:-ms-input-placeholder {
  color: #afafaf;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
ol,
ul,
table,
caption,
hr {
  margin: 0;
  margin-bottom: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Mulish", sans-serif;
  line-height: 1.3;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 26px;
}

h4,
.h4 {
  font-size: 20px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
.h1 {
    font-size: 36px;
  }

  h2,
.h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
.h1 {
    font-size: 32px;
  }

  h2,
.h2 {
    font-size: 28px;
  }

  h3,
.h3 {
    font-size: 24px;
  }

  h4,
.h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  h1,
.h1 {
    font-size: 28px;
  }

  h2,
.h2 {
    font-size: 24px;
  }

  h3,
.h3 {
    font-size: 22px;
  }

  h4,
.h4 {
    font-size: 20px;
  }
}
h1,
.h1,
h2,
.h2 {
  font-weight: 700;
}

h3,
.h3,
h4,
.h4 {
  font-weight: 600;
}

h5,
.h5,
h6,
.h6 {
  font-weight: 500;
}

a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

input,
select {
  height: 45px;
  line-height: 45px;
}

input,
select,
textarea {
  background: transparent;
  border: 1px solid #d9d9d9;
  padding: 0 20px;
  width: 100%;
  font-size: 16px;
  color: #afafaf;
    font-family: "Mulish", sans-serif;
  font-weight: 300;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
input:focus, input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: #262262;
}

input,
select,
button,
textarea {
    font-family: "Mulish", sans-serif;
}

option {
  font-weight: 300;
}

select {
  background: url(../images/icons/caret-down.png) no-repeat scroll;
  background-position: center right 15px;
}
.bg-image--2 {
    background-image: url(../images/page-title-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* Define Colors */
.color--theme {
  color: #262262;
}

.colog--blue {
  color: #333982;
}

.colog--green {
  color: #262262;
}

.colog--orange {
  color: #EF785A;
}

.color--yellow {
  color: #EFC418;
}

.color--light {
  color: #999999;
}

.color--dark {
  color: #333333;
}

.color--black {
  color: #000000;
}

.color--white {
  color: #ffffff;
}

/* Background Color */
.bg--theme {
  background: #262262;
}

.bg--secondary {
  background: #333982;
}

.bg--blue {
  background: #333982;
}

.bg--green {
  background: #262262;
}

.bg--yellow {
  background: #EFC418;
}

.bg--orange {
  background: #EF785A;
}

.bg--light {
  background: #999999;
}

.bg--dark {
  background: #262262;
}

.bg--dark--light {
  background: #2a2a2a;
}

.bg--black {
  background: #000000;
}

.bg--white {
  background: #ffffff;
}

.bg--grey {
  background: #fafafa;
}

.bg--grey--light {
  background: #f2f2f2;
}

.bg--abstruct-mask {
  position: relative;
}
.bg--abstruct-mask:before, .bg--abstruct-mask:after {
  content: "";
  top: 0;
  height: 100%;
  width: 25%;
  position: absolute;
  background-size: cover;
}


/* Text specialized */
.text--italic {
  font-style: italic;
}

.text--normal {
  font-style: normal;
}

.text--underline {
  font-style: underline;
}

/* Font specialized */
.body--font {
    font-family: "Mulish", sans-serif;
}

.heading--font {
    font-family: "Mulish", sans-serif;
}

/* Height and width */
.fullscreen {
  min-height: 100vh;
  width: 100%;
}

.w--100 {
  width: 100%;
}

.w--75 {
  width: 75%;
}

.w--50 {
  width: 50%;
}

.w--33 {
  width: 33.33%;
}

.w--25 {
  width: 25%;
}

.w--10 {
  width: 10%;
}

.h--100 {
  height: 100%;
}

.h--75 {
  height: 75%;
}

.h--50 {
  height: 50%;
}

.h--25 {
  height: 25%;
}

.h--33 {
  height: 33.33%;
}

.h--10 {
  height: 10%;
}

/* Section padding */
.section-padding--xlg {
  padding: 120px 0;
}

.section-padding--lg {
  padding: 100px 0;
}

.section-padding--md {
  padding: 80px 0;
}

.section-padding--sm {
  padding: 65px 0;
}

.section-padding--xs {
  padding: 50px 0;
}

.section-padding-top--xlg {
  padding-top: 120px;
}

.section-padding-top--lg {
  padding-top: 100px;
}

.section-padding-top--md {
  padding-top: 80px;
}

.section-padding-top--sm {
  padding-top: 65px;
}

.section-padding-top--xs {
  padding-top: 50px;
}

.section-padding-bottom--xlg {
  padding-bottom: 120px;
}

.section-padding-bottom--lg {
  padding-bottom: 100px;
}

.section-padding-bottom--md {
  padding-bottom: 80px;
}

.section-padding-bottom--sm {
  padding-bottom: 65px;
}

.section-padding-bottom--xs {
  padding-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-padding--xlg {
    padding: 100px 0;
  }

  .section-padding--lg {
    padding: 80px 0;
  }

  .section-padding--md {
    padding: 70px 0;
  }

  .section-padding--sm {
    padding: 60px 0;
  }

  .section-padding-top--xlg {
    padding-top: 100px;
  }

  .section-padding-top--lg {
    padding-top: 80px;
  }

  .section-padding-top--md {
    padding-top: 70px;
  }

  .section-padding-top--sm {
    padding-top: 60px;
  }

  .section-padding-bottom--xlg {
    padding-bottom: 100px;
  }

  .section-padding-bottom--lg {
    padding-bottom: 80px;
  }

  .section-padding-bottom--md {
    padding-bottom: 70px;
  }

  .section-padding-bottom--sm {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-padding--xlg {
    padding: 80px 0;
  }

  .section-padding--lg {
    padding: 70px 0;
  }

  .section-padding--md {
    padding: 60px 0;
  }

  .section-padding-top--xlg {
    padding-top: 80px;
  }

  .section-padding-top--lg {
    padding-top: 70px;
  }

  .section-padding-top--md {
    padding-top: 60px;
  }

  .section-padding-bottom--xlg {
    padding-bottom: 80px;
  }

  .section-padding-bottom--lg {
    padding-bottom: 70px;
  }

  .section-padding-bottom--md {
    padding-bottom: 60px;
  }
}

/* Overlay styles */
[data-overlay], [data-black-overlay] {
  position: relative;
}

[data-overlay] > div, [data-overlay] > *, [data-black-overlay] > div, [data-black-overlay] > * {
  position: relative;
  z-index: 2;
}

[data-overlay]:before, [data-black-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

[data-overlay]:before {
    background-color: #1a1a1a;
}

[data-black-overlay]:before {
  background-color: #000000;
}

[data-overlay="1"]:before, [data-black-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before, [data-black-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before, [data-black-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before, [data-black-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before, [data-black-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before, [data-black-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before, [data-black-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before, [data-black-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before, [data-black-overlay="9"]:before {
  opacity: 0.9;
}

[data-overlay="10"]:before, [data-black-overlay="10"]:before {
  opacity: 1;
}

/* Other Styels */
[class^=flaticon-]:before, [class*=" flaticon-"]:before,
[class^=flaticon-]:after, [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-size: inherit;
  font-style: normal;
  margin-left: 0;
  line-height: inherit;
}

#scrollUp {
  right: 30px;
  bottom: 30px;
  height: 45px;
  width: 45px;
  line-height: 44px;
  text-align: center;
  background: #262262;
  color: #ffffff;
  font-size: 22px;
  border-radius: 100%;
  border: 1px solid #262262;
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.1);
  -webkit-animation: bounceIn 0.8s ease-in-out 1 both;
  animation: bounceIn 0.8s ease-in-out 1 both;
}

/*******************
Elements Styles
********************/
/**
Button Styles 
*/
a.cr-btn, button.cr-btn, .cr-btn {
  display: inline-block;
  background: #262262;
  padding: 11px 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  position: relative;
  vertical-align: middle;
  overflow: hidden;
  border: 1px solid #262262;
  -webkit-transition: border-color 0.5s ease-in-out 0s;
  transition: border-color 0.5s ease-in-out 0s;
}
a.cr-btn span, button.cr-btn span, .cr-btn span {
  position: relative;
  line-height: auto;
}
a.cr-btn:before, button.cr-btn:before, .cr-btn:before {
  content: "";
  left: 50%;
  top: 50%;
  height: 400px;
  width: 400px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: box-shadow 0.5s ease-in-out 0s;
  -webkit-transition: -webkit-box-shadow 0.5s ease-in-out 0s;
  transition: -webkit-box-shadow 0.5s ease-in-out 0s;
  transition: box-shadow 0.5s ease-in-out 0s;
  transition: box-shadow 0.5s ease-in-out 0s, -webkit-box-shadow 0.5s ease-in-out 0s;
  border-radius: 100%;
}
a.cr-btn:hover, button.cr-btn:hover, .cr-btn:hover {
  color: #fff;
  border-color: #333982;
}
a.cr-btn:hover:before, button.cr-btn:hover:before, .cr-btn:hover:before {
  -webkit-box-shadow: inset 0 0 0 400px #333982;
  -ms-box-shadow: inset 0 0 0 400px #333982;
  -o-box-shadow: inset 0 0 0 400px #333982;
  box-shadow: inset 0 0 0 400px #333982;
}
a.cr-btn.cr-btn--lg, button.cr-btn.cr-btn--lg, .cr-btn.cr-btn--lg {
  padding: 12px 30px;
}
a.cr-btn.cr-btn--sm, button.cr-btn.cr-btn--sm, .cr-btn.cr-btn--sm {
  padding: 8px 40px;
}
a.cr-btn.cr-btn--transparent, button.cr-btn.cr-btn--transparent, .cr-btn.cr-btn--transparent {
  font-weight: 600;
  font-size: 14px;
  color: #646464;
  background: transparent;
  border-color: #9f9f9f;
}
a.cr-btn.cr-btn--transparent:hover, button.cr-btn.cr-btn--transparent:hover, .cr-btn.cr-btn--transparent:hover {
  border-color: #262262;
  color: #fff;
}
a.cr-btn.cr-btn--transparent:hover:before, button.cr-btn.cr-btn--transparent:hover:before, .cr-btn.cr-btn--transparent:hover:before {
  -webkit-box-shadow: inset 0 0 0 400px #262262;
  -ms-box-shadow: inset 0 0 0 400px #262262;
  -o-box-shadow: inset 0 0 0 400px #262262;
  box-shadow: inset 0 0 0 400px #262262;
}

/* Readmore Buttons */
.cr-readmore, a.cr-readmore, button.cr-readmore {
  display: inline-block;
  border: 1px solid #262262;
  padding: 3px 18px;
  color: #262262;
}

.cr-readmore-2, a.cr-readmore-2, button.cr-readmore-2 {
  display: inline-block;
  color: #262262;
  font-weight: 500;
}
.cr-readmore-2::after, a.cr-readmore-2::after, button.cr-readmore-2::after {
  content: "";
  font-family: "fontAwesome";
  padding-left: 5px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.cr-readmore-2:hover, a.cr-readmore-2:hover, button.cr-readmore-2:hover {
  color: #262262;
}
.cr-readmore-2:hover::after, a.cr-readmore-2:hover::after, button.cr-readmore-2:hover::after {
  padding-left: 10px;
}



/**
Section Title Styles
*/
.section-title {
  padding-left: 0;
  padding-right: 90px;
}
.section-title h4 {
  color: #323232;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1;
  margin-top: -2px;
}
.section-title h2 {
  color: #2b2b2b;
  font-weight: 700;
}
.section-title.text-center {
  padding: 0 60px;
  text-align: center;
}
.section-title.text-right {
  padding-right: 0;
  padding-left: 90px;
}
.section-title.no-padding {
  padding: 0 !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    padding-right: 30px;
  }
  .section-title.text-center {
    padding: 0 25px;
  }
  .section-title.text-right {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    padding-right: 30px;
  }
  .section-title.text-center {
    padding: 0 25px;
  }
  .section-title.text-right {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title {
    padding-right: 30px;
  }
  .section-title.text-center {
    padding: 0 25px;
  }
  .section-title.text-right {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title {
    padding-right: 0;
  }
  .section-title.text-center {
    padding: 0;
  }
  .section-title.text-right {
    padding-left: 0;
  }
}
h4.small-title {
  color: #303030;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}


/* Slider Arrow Style */
.banner-slider-active {
  position: relative;
}
.banner-slider-active .cr-slick-arrow {
  position: absolute;
  top: 50%;
  height: 60px;
  width: 60px;
  margin-top: -30px;
  outline: none;
  border: none;
  display: inline-block;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 30px;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.banner-slider-active .cr-slick-arrow i {
  line-height: 58px;
}
.banner-slider-active .cr-slick-arrow:hover {
  background: #262262;
}
.banner-slider-active .cr-slick-arrow.cr-slick-prev {
  left: 0;
}
.banner-slider-active .cr-slick-arrow.cr-slick-next {
  right: 0;
}
.banner-slider-active:hover .cr-slick-arrow {
  visibility: visible;
  opacity: 1;
}
.banner-slider-active:hover .cr-slick-arrow.cr-slick-prev {
  left: 2%;
}
.banner-slider-active:hover .cr-slick-arrow.cr-slick-next {
  right: 2%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-slider-active .cr-slick-arrow {
    top: auto;
    bottom: 25px;
    height: 50px;
    width: 50px;
    font-size: 24px;
  }
  .banner-slider-active .cr-slick-arrow i {
    line-height: 48px;
  }
  .banner-slider-active .cr-slick-arrow.cr-slick-prev {
    left: auto;
    right: 50%;
  }
  .banner-slider-active .cr-slick-arrow.cr-slick-next {
    right: auto;
    left: 50%;
  }
  .banner-slider-active:hover .cr-slick-arrow.cr-slick-prev {
    left: auto;
    right: calc(50% + 15px);
  }
  .banner-slider-active:hover .cr-slick-arrow.cr-slick-next {
    right: auto;
    left: calc(50% + 15px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-slider-active .cr-slick-arrow {
    height: 42px;
    width: 42px;
    font-size: 20px;
    top: auto;
    bottom: 25px;
  }
  .banner-slider-active .cr-slick-arrow i {
    line-height: 40px;
  }
  .banner-slider-active .cr-slick-arrow.cr-slick-prev {
    left: auto;
    right: 50%;
  }
  .banner-slider-active .cr-slick-arrow.cr-slick-next {
    right: auto;
    left: 50%;
  }
  .banner-slider-active:hover .cr-slick-arrow.cr-slick-prev {
    left: auto;
    right: calc(50% + 15px);
  }
  .banner-slider-active:hover .cr-slick-arrow.cr-slick-next {
    right: auto;
    left: calc(50% + 15px);
  }
}
@media only screen and (max-width: 767px) {
  .banner-slider-active .cr-slick-arrow {
    height: 36px;
    width: 36px;
    font-size: 18px;
    top: auto;
    bottom: 20px;
  }
  .banner-slider-active .cr-slick-arrow i {
    line-height: 34px;
  }
  .banner-slider-active .cr-slick-arrow.cr-slick-prev {
    left: auto;
    right: 50%;
  }
  .banner-slider-active .cr-slick-arrow.cr-slick-next {
    right: auto;
    left: 50%;
  }
  .banner-slider-active:hover .cr-slick-arrow.cr-slick-prev {
    left: auto;
    right: calc(50% + 10px);
  }
  .banner-slider-active:hover .cr-slick-arrow.cr-slick-next {
    right: auto;
    left: calc(50% + 10px);
  }
}

/**
Breadcrumb Styles
*/
.cr-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cr-breadcrumb__left {
  padding: 10px 0;
  padding-right: 30px;
}
.cr-breadcrumb__left h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1;
}
.cr-breadcrumb__left p {
  margin-bottom: 0;
  color: #ffffff;
}
.cr-breadcrumb__right {
  padding: 10px 0;
}
.cr-breadcrumb__pagination {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cr-breadcrumb__pagination li {
  list-style: none;
  color: #ffffff;
  display: inline-block;
  /*text-transform: uppercase;*/
  font-weight: 500;
}
.cr-breadcrumb__pagination li::after {
  content: "/";
  padding: 0 5px;
}
.cr-breadcrumb__pagination li:last-child::after {
  display: none;
}
.cr-breadcrumb__pagination li a {
  color: #ffffff;
}
.cr-breadcrumb__pagination li a:hover {
  text-decoration: underline;
}



/**
 * Team Styels
 */
.team {
  margin-top: 30px;
}

.team__header {
  position: relative;
}

.team__image {
  position: relative;
}
.team__content {
  background: #ffffff;
  text-align: center;
  padding: 30px 15px;
  border: 1px solid #eeeeee;
}
.team__content h5 {
  margin-bottom: 2px;
}
.team__content h5 a {
  color: #2b2b2b;
}
.team__content h5 a:hover {
  color: #333982;
}
.team__content p {
  margin-bottom: 0;
  color: #a0a0a0;
}

.team:hover .team__image:before {
  opacity: 0.85;
  visibility: visible;
}
.team:hover .team__social ul li {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}


/*******************
Blocks Styles
********************/
/**
Header Styles
*/
/* Header Top Styles */

/* Header Top Styles */
.header {
  position: relative;
  z-index: 999;
}

.header__top__inner {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.header__top__button .cr-btn::before {
  display: none;
}
.header__top__button .cr-btn:hover {
  border-color: #423d8f;
}

.header__top__info {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.header__top__info li {
  display: inline-block;
  padding: 0px 15px;
  vertical-align: middle;
  line-height: 1;
}
.header__top__info li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.header__top__info li:first-child {
  padding-left: 0;
}
.header__top__info li:last-child {
  padding-right: 0;
}
.header__top__info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  vertical-align: middle;
}
.header__top__info li a i {
  padding-right: 7px;
}

.social-icons.social-icons--rounded ul{
    margin-bottom:0px;
}

.social-icons.social-icons--rounded ul li {
    display: inline-block;
    padding-left:10px;
}
.social-icons.social-icons--rounded ul li a {
    color: #ddd;
}


.top-left a {
    font-size: 14px;
    color: #ddd;
    padding-right: 12px;
    font-weight: 300;
}
.top-left a span{
  padding-right: 5px;
}
.header-social-icon a{
  background: #fff;
  color: #222;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  display: inline-block;
}

.header {
  position: relative;
  z-index: 999;
  transition: 0.6s;
}
.sticky--header img {
    padding-bottom: 5px;
    padding-top: 5px;
    width: 65%;
}

/* Header Bottom Styles */
.header__bottom__inner {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.header__logo a {
  display: inline-block;
  padding: 0px 0;
}

/* Sticky Header */
.sticky--header.is-sticky .header__bottom {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-animation: slideInDown 0.5s ease-in-out 1 both;
  animation: slideInDown 0.5s ease-in-out 1 both;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.sticky--header.is-sticky .header__logo a {
  padding: 5px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {


  .sticky--header {
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
 

  .sticky--header {
    position: relative;
  }
}

/**
Navigation Styles
*/
.main-navigation {
  display: -webkit-box !important;
  display: -moz-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}
.main-navigation > ul > li:hover > a {
  color: #262262;
}
.main-navigation ul {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}
.main-navigation ul li {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  padding: 0 20px;
  /* Dropdown Menu Styles */
  /* Last Element */
}
.main-navigation ul li:first-child {
  padding-left: 0;
}
.main-navigation ul li:last-child {
  padding-right: 0;
}
.main-navigation ul li a {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  color: #323232;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}
.main-navigation ul li.cr-dropdown {
  position: relative;
}
.main-navigation ul li.cr-dropdown > a:after {
  content: "";
  font-family: fontAwesome;
  margin-left: 5px;
  line-height: 26px;
  display: inline-block;
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 250px;
  background: #ffffff;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 99;
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu li {
  display: block;
  padding: 0;
  position: relative;
  /* Sub Dropdown Menu */
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu li a {
  display: block;
  font-size: 14px;
  background: #ffffff;
  color: #454545;
  padding: 6px 20px;
  position: relative;
  font-weight: 400;
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu li:hover > a {
  background: #262262;
  color: #ffffff;
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu li.cr-dropdown-sub > a {
  position: relative;
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu li.cr-dropdown-sub > a:after {
  content: "";
  font-family: fontAwesome;
  position: absolute;
  right: 15px;
  top: 50%;
  height: 30px;
  line-height: 30px;
  margin-top: -15px;
  font-size: 14px;
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 250px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  background: #fff;
}
.main-navigation ul li.cr-dropdown .cr-dropdown-menu li:hover ul {
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.main-navigation ul li:hover a:before {
  width: 100%;
}
.main-navigation ul li:hover .cr-dropdown-menu {
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.main-navigation ul li.last-elements .cr-dropdown-menu {
  right: 0;
  left: auto;
}
.main-navigation ul li.last-elements .cr-dropdown-menu .cr-sub-dropdown-menu {
  left: auto;
  right: 100%;
  background: #fff;
}
.main-navigation ul ul {
  display: block;
  background: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-navigation ul li {
    padding: 0 17px;
  }
}
/**
Banner Styles
*/
.banner-area {
  margin-top: 0 !important;
}

.banner {
  position: relative;
}

.banner__single {
  display: -webkit-box !important;
  display: -moz-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.banner__single:focus, .banner__single:active {
  outline: 0;
}

.banner__single__content {
  padding: 55px 0 70px 0;
  color: #fff;
}
.banner__single__content h5 {
  margin-bottom: 20px;
}
.banner__single__content h1 {
  font-size: 52px;
  line-height: 62px;
  font-weight: 700;
  margin-bottom: 20px;
}
.banner__single__content p {
  font-size: 17px;
  margin-bottom: 20px;
}
.banner__single__content .cr-btn {
  margin-top: 20px;
}
.banner__single__content.color--black {
  color: #303030;
}

.banner-slider-active .banner__single__content {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 0.6s ease-in 0.2s;
  transition: all 0.6s ease-in 0.2s;
}
.banner-slider-active .slick-current .banner__single__content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__single__content h1 {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 15px;
  }
  .banner__single__content a.cr-btn {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__single {
    margin-top: 0 !important;
  }

  .banner__single__content {
    text-align: center;
  }
  .banner__single__content h1 {
    font-size: 42px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__single {
    margin-top: 0 !important;
  }

  .banner__single__content {
    text-align: center;
  }
  .banner__single__content h3 {
    font-size: 18px;
  }
  .banner__single__content h1 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 15px;
  }
  .banner__single__content p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .banner__single__content a.cr-btn {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .banner__single__content h1 {
    font-size: 28px;
    line-height: 38px;
  }
}

.notification {
  background-color: #d7df21;
  color: #0529a2;
  padding: 20px;
}
.notification h4{
  margin-bottom: 0;
}
/**
About Area
*/
.about-area__content h4 {
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #474747;
}
.about-area__content h3 {
  color: #303030;
  text-transform: uppercase;
  padding-right: 50px;
  margin-bottom: 25px;
}
.about-area__content a.cr-btn {
  margin-top: 27px;
}
.about-img-box img{
  border-radius: 15px;
}

.about-box img{
  border-radius: 10px;
}

.about-area__content ul{
  padding: 0px 20px;
  margin: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area__image {
    padding: 50px 0;
    text-align: center;
    max-height: auto;
  }
  .about-area__image img {
    position: relative;
  }

  .about-area__content {
    padding: 0;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area__image {
    padding: 50px 0;
    text-align: center;
    max-height: auto;
  }
  .about-area__image img {
    max-width: 100%;
    position: relative;
  }

  .about-area__image img {
    max-width: 100%;
  }

  .about-area__content {
    padding: 0;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .about-area__content {
    padding-left: 0;
    padding-right: 0;
  }
  .about-area__content h3 {
    padding-right: 0;
    padding-left: 0;
  }
}
/**
Service Area
*/

.service-sec {
    margin-top: 30px;
    border: 1px solid #eeeeee;
    padding: 20px 10px 20px 10px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 3px 4px 15px #00000014;
    border-radius: 10px;
    text-align: center;
}
.service-sec:hover {
  box-shadow: 3px 4px 15px #00000047;
}
.service-content a{
  color:#000;
}
.service-content a:hover{
  color: #262262;
}
.service-sec img{
  width: 80px;
}
.service-content h5 {
  text-transform: uppercase;
  font-weight: 700;
  color: #2b2b2b;
  margin-top: 10px;
  font-size: 16px;
}
.service-content p {
  margin-bottom: 0;
  line-height: 28px;
}

.service:hover .service__icon {
  -webkit-animation: bounceIn 0.5s ease-in-out 1 both;
  animation: bounceIn 0.5s ease-in-out 1 both;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .service__icon {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .service__icon {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .service {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .service__icon {
    margin-right: 0;
  }
}
/**
Call to action styles
*/
.calltoaction {
  padding-left: 0;
  padding-right: 55px;
}
.calltoaction.text-left {
  padding-left: 0;
  padding-right: 55px;
}
.calltoaction.text-center {
  padding: 0 55px;
}
.calltoaction.text-right {
  padding-right: 0;
  padding-left: 55px;
}
.calltoaction h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.calltoaction p {
  margin-bottom: 0;
  color: #fff;
}
.calltoaction .calltoaction-button {
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  color: #333;
  background: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calltoaction .calltoaction-button span.calltoaction-icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  background: #262262;
  color: #fff;
  font-size: 26px;
}
.calltoaction .calltoaction-button a {
  font-weight: 600;
  color: #262262;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .calltoaction.text-center {
    padding: 0;
  }
  .calltoaction h6 a {
    font-size: 20px;
  }
  .calltoaction .calltoaction-button {
    font-size: 18px;
  }
  .header-social-icon {
    display: none;
}
.header-wrapper {
    text-align: center;
}
}


/**
 * Portfolio
 */
.portfolio-filters {
  font-size: 0;
  margin-top: 15px;
}
.portfolio-filters button {
  display: inline-block;
  font-size: 16px;
  color: #454545;
  background: transparent;
  padding: 6px 22px 6px 22px;
  outline: none;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 10px;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border: none;
  position: relative;
  border: 1px solid transparent;
}
.portfolio-filters button.is-active {
  color: #262262;
  border: 1px solid #262262;
}
.portfolio-filters button:hover {
  color: #262262;
}

.portfolio-wrap {
  margin-top: 20px;
}

.portfolio {
    border: 8px solid#fff;
    margin-top: 30px;
    position: relative;
    -webkit-box-shadow: 0 0 8px rgb(0 0 0 / 15%);
    box-shadow: 0 0 8px rgb(0 0 0 / 15%);
    overflow: hidden;
}
.portfolio-image {
  position: relative;
  overflow: hidden;
}
.portfolio-image img {
  width: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.portfolio-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 15px;
  text-align: center;
  background: rgba(51, 57, 130, 0.9);
  text-align: left;
  padding: 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.portfolio-content a {
  color: #ffffff;
}
.portfolio-content h5 {
  font-weight: 500;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.portfolio-content h6 {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.portfolio .portfolio-zoomicon {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #ffffff;
  z-index: 3;
  font-size: 22px;
  padding: 2px;
  -webkit-transform: translate(100%, 100%);
          transform: translate(100%, 100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.portfolio .portfolio-zoomicon::before {
  position: absolute;
  height: 100px;
  width: 45px;
  background: #262262;
  bottom: -37px;
  right: -10px;
  z-index: 2;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.portfolio .portfolio-zoomicon i {
  position: relative;
  z-index: 3;
}
.portfolio:hover {
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}
.portfolio:hover .portfolio-zoomicon {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.portfolio:hover .portfolio-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.portfolio:hover .portfolio-content {
  visibility: visible;
  opacity: 1;
}



section.contact_sec {
    padding: 40px 0px;
    background-image: linear-gradient( 45deg, rgb(227 218 255) 0, rgb(232 225 255) 21%, rgb(236 234 255) 21%, rgb(234 232 255) 30%, rgb(226 231 255) 30%, rgb(241 243 255) 35%, rgb(226 237 255) 35%, rgb(248 251 255) 51%, rgb(248 252 255) 51%, rgb(239 248 255) 72%, rgb(247 245 255) 72%, rgb(243 242 255) 81%, rgb(237 238 255) 81%, rgb(236 253 255) 100%);
}
.contactus-form{
    text-align:left
}
.contactus-form .form-group{
    margin-bottom:15px
}
.contactus-form .form-control{
    border-radius:0
}
.contact-form {
    max-width: 1200px;
    width: 100%;
    display: table;
    margin: 0 auto;
    background: #fff;
    padding: 15px;
}
.contactus-intro{
    border:1px solid#ccc
}
.contactus-intro ul li{
    list-style:none;
    text-align:left;
    color:#000;
    border-bottom:1px solid#ddd;
    padding:10px 15px
}
.contactus-intro ul li:last-child{
    border-bottom:0
}
.contactus-intro ul li span{
    display:block;
    font-weight:700;
    font-size:16px
}
.contactus-intro ul li a{
    color:#000;
    text-decoration:none
}
.contactus-intro ul li p{
    display:flex;
    margin-bottom:0
}
.contactus-intro ul li i{
    line-height:2;
    margin-right:15px
}
.contactus-form{
    border:1px solid#ccc;
    padding:15px
}
.contact-form textarea.form-control{
    height:100px
}
button.btn_submit.aos-init.aos-animate {
    background: #262262;
    color: #fff;
    padding: 10px 30px;
    border: 0;
    font-weight: 600;
}



.dk-footer {
  border-top: 5px solid#262262;
  padding: 75px 0 0;
  background-color: #222;
  position: relative;
}
.dk-footer .contact-us {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 80px;
}
.dk-footer .contact-us .contact-info {
  margin-left: 50px;
}
.dk-footer .contact-us.contact-us-last {
  margin-left: -80px;
}
.dk-footer .contact-icon i {
  font-size: 24px;
  top: -15px;
  position: relative;
  color: #007bff;
}
.dk-footer-box-info {
  background: #202020;
  padding: 40px;
}
.footer-social-link h3 {
    font-weight: 700;
    color: #dddddd;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 18px;
}
 .footer-social-link ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-social-link li {
  display: inline-block;
}
.footer-social-link li a {
  text-decoration: none;
  text-transform: capitalize;
}
.footer-widget ul li a:hover {
  color: #d7df21;
}
.footer-social-link a i {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  background: #000;
  margin-right: 5px;
  background: #ddd;
  color: #222;
}

.footer-widget .section-heading {
  margin-bottom: 35px;
}
.footer-widget h3 {
  font-weight: 700;
    color: #dddddd;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 18px;
}
.footer-widget ul{
  padding: 0px;
  margin: 0px;
}
.footer-widget li {
  margin-bottom: 18px;
  list-style: none;
}
.footer-widget p {
  margin-bottom: 27px;
  color: #a7a7a7;
  font-weight: 500;
}
.footer-widget a {
    color: #a7a7a7;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 500;
}

.copyright{
  background: #000;
  text-align: center;
}
.copyright p{
  color: #a7a7a7;
  font-size: 14px;
  padding: 5px 0px;
  margin-bottom: 0px;
  font-weight: 500;
}
.copyright a{
  font-weight: 700;
}


.testimonial

{
    padding: 60px 0px 50px 0px;
}
.testimonial .owl-nav {
    display: block!important;
}

.testimonial h2{
        color: #1f61eb;
}
.testimonial-info {
    background: #fff;
    padding: 25px 15px;
    box-shadow: 0 14px 34px rgb(0 0 0 / 5%);
    border-radius: 15px;
}
.testimonial-info p{
    font-size: 14px;
}
.testimonial-img img{
    width: 100%!important;
    border-radius: 50px;
}
.testimonial-user-info h4 {
    font-size: 16px;
    color: #1f61eb;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-user-info p {
    font-size: 12px;
    line-height: 15px;
}
.testimonial-dt {
    margin-top: 100px;
    padding-top: 15px;
    border-top: 1px solid#ccc;
}




.testimonial .owl-theme .owl-dots {
  display: none;
}
.testimonial .owl-theme .owl-nav [class*='owl-'] {
  color: #000!important;
  font-size: 18px;
  margin: 5px;
  height: 35px;
  width: 35px;
  line-height: 35px;
    background: #fff;
    box-shadow: 0 14px 34px rgb(0 0 0 / 20%);
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.70s;
  -webkit-transition: 0.70s;
  -moz-transition: 0.70s;
  -ms-transition: 0.70s;
  -o-transition: 0.70s;
  transition: 0.6s;
}

.testimonial .owl-carousel.owl-loaded .owl-nav {
    position: absolute;
    left: 7%;
    margin-top: 40px;
}
.testimonial .owl-nav button:hover {
    background: #fff !important;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    background: #fff;
    -webkit-box-shadow: 0 0 40px rgb(51 51 51 / 10%);
    box-shadow: 0 0 40px rgb(51 51 51 / 10%);
}
/**
Testimonial Styles
*/
/* Testimonial Content Styles */
.testimonial__content {
  position: relative;
  background: #ffffff;
  padding: 50px 30px;
  -webkit-box-shadow: 0 8px 19px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 19px rgba(0, 0, 0, 0.1);
}
.testimonial__content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  height: 30px;
  width: 30px;
  display: inline-block;
  margin-top: -20px;
  margin-left: -15px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.07);
          box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.07);
}
.testimonial__content > div {
  position: relative;
}
.testimonial__content .slick-list {
  padding-left: 0;
  padding-right: 0;
}

.testimonial__content__single {
  padding: 0 45px;
}
.testimonial__content__single p {
  margin-bottom: 0;
  font-size: 18px;
}
.testimonial__content__single p::before, .testimonial__content__single p::after {
  font-family: "FontAwesome";
  opacity: 0.3;
  font-size: 24px;
}
.testimonial__content__single p::before {
  content: "";
  padding-right: 20px;
}
.testimonial__content__single p:after {
  content: "";
  padding-left: 20px;
}
.testimonial__content__single:active, .testimonial__content__single:focus {
  outline: none;
}

/* Testimonial Author Styles */
.testimonial__author {
  margin-top: 35px;
  display: inline-block;
  width: 65%;
  vertical-align: middle;
}
.testimonial__author .slick-list {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.testimonial__author__single {
  text-align: center;
  opacity: 0.35;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.testimonial__author__single:active, .testimonial__author__single:focus {
  outline: none;
}

.testimonial__author__image {
  height: 80px;
  width: 80px;
  border-radius: 100%;
  display: inline-block;
  overflow: hidden;
  border: 8px solid #eeeeee;
  -webkit-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}
.testimonial__author__image img {
  height: 100%;
  width: 100%;
}

.testimonial__author__description {
  margin-top: 5px;
}
.testimonial__author__description h6 {
  font-size: 14px;
  color: #595959;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.testimonial__author__description span {
  display: block;
  color: #a1a1a1;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5px;
}

.testimonial__author__single.slick-center {
  opacity: 1;
}
.testimonial__author__single.slick-center .testimonial__author__description h6 {
  color: #423d8f;
}

@media only screen and (max-width: 767px) {
  .testimonial__author {
    width: 85%;
  }

  .testimonial__content__single p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .testimonial__content__single {
    padding: 0;
  }

  .testimonial__author {
    width: 100%;
  }
}

/**
Contact Page Styles
*/
.pg-contact__content {
  background: #262262;
  padding: 40px 30px;
  color: #fff;
}
.pg-contact__content > h1 {
  text-transform: uppercase;
  padding-right: 50px;
}
.pg-contact__content > p {
  padding-right: 50px;
}

.pg-contact__blocks {
  padding-top: 30px;
}
.pg-contact__blocks .single-block {
  font-size: 16px;
}
.pg-contact__blocks .single-block:not(:last-child) {
  margin-bottom: 30px;
}
.pg-contact__blocks .single-block h6 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  position: relative;
}
.pg-contact__blocks .single-block h6:before {
  height: 8px;
  width: 8px;
  content: "";
  left: 0;
  top: -1px;
  display: inline-block;
  background: #ffffff;
  position: relative;
  margin-right: 15px;
}
.pg-contact__blocks .single-block p {
  color: #d7df21;
  margin-bottom: 0;
}
.pg-contact__blocks .single-block a {
  color: #d7df21;
}
.pg-contact__blocks .single-block a:hover {
  color: #fff;
}

.map-size {
  height: 450px;
  width: 100%;
}
        
.fixed-button {
    border-radius: 50%;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 23px 0 rgba(12, 0, 46, 0.15);
    -moz-box-shadow: 0 3px 23px 0 rgba(12, 0, 46, 0.15);
    box-shadow: 0 3px 23px 0 rgba(12, 0, 46, 0.15);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    position: fixed;
    bottom: 20px;
    z-index: 999999;
    -webkit-animation: button-updown 1s infinite alternate;
    -moz-animation: button-updown 1s infinite alternate;
    animation: button-updown 1s infinite alternate;
}
.whatsapp-button {
    left: 20px;
    background: #4ec95c;
}
.fixed-button a {
    display: block;
}
.whatsapp-button a {
    color: #fff;
}
@-webkit-keyframes button-updown {
    0% {
        -webkit-transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(-15px);
    }
}
@-moz-keyframes button-updown {
    0% {
        -moz-transform: translateY(0px);
    }
    100% {
        -moz-transform: translateY(-15px);
    }
}
@keyframes button-updown {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}




@media(max-width: 800px){
  .sticky--header img {
    width: 70%;
    padding-bottom: 5px;
}
.mean-bar {
    margin-bottom: 5px;
}
}

@media(max-width: 767px){

  .section-padding--md {
      padding: 50px 0;
  }
  .footer-widget .section-heading {
      margin-bottom: 0px;
  }.footer-widget li {
      margin-bottom: 8px;
  }
  .footer-widget h3 {
      font-size: 18px;
      text-transform: uppercase;
  }
}

@media(max-width: 575px){
  .cr-breadcrumb__left h2 {
      font-size: 18px;
  }
  .cr-breadcrumb__pagination li {
      font-size: 13px;
  }
}

.subscribe-btn{
    padding: 10px 15px;
    border-radius: 0px;
    background: #ffb700;
    color: #fff;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #1f1880 !important;
  background-color: #fff !important;
  border-color: #ffffff #ffffff #423d8f !important;
  border-bottom: 2px solid #423d8f !important;
}
/*----- New Form ------*/
/**Enquire form section**/
.light-bgs {
background: rgba(255, 255, 255, 0.52);
padding: 30px;
border-radius: 8px;
}
.enquire-form {
background: #d6fffc;
background: -moz-linear-gradient(top, #d6fffc 0%, #ffeff5 100%);
background: -webkit-linear-gradient(top, #d6fffc 0%, #ffeff5 100%);
background: linear-gradient(to bottom, #d6fffc 0%, #ffeff5 100%);
}
.custom-file-label::after {
line-height: 44px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
z-index: 3;
display: block;
border: 0;
height: auto;
padding: 0px 15px;
color: #495057;
content: "Browse";
background-color: #e9ecef;
border-left: inherit;
border-radius: 0;
cursor: pointer;
}
.custom-file-label {
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 1;
padding: 0px 15px;
font-weight: 400;
height: 50px;
line-height: 46px;
background-color: #fff;
border: 2px solid #ced4da;
border-radius: 4px;
}
.custom-file {
position: relative;
display: inline-block;
width: 100%;
height: auto;
margin-bottom: 0;
}
.enquire-form {
background: #ffbd84;
background: -moz-linear-gradient(top, #ffbd84 0%, #ff5722 100%);
background: -webkit-linear-gradient(top, #ffbd84 0%, #ff5722 100%);
background: linear-gradient(to right, #ffbd84 0%,#ff5722 100%);
}
.custom-file-label::after {
line-height: 44px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
z-index: 3;
display: block;
border: 0;
height: auto;
padding: 0px 15px;
color: #495057;
content: "Browse";
background-color: #e9ecef;
border-left: inherit;
border-radius: 0;
cursor: pointer;
}
.custom-file-label {
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 1;
padding: 0px 15px;
font-weight: 400;
height: 50px;
line-height: 46px;
background-color: #fff;
border: 2px solid #ced4da;
border-radius: 4px;
}
.custom-file {
position: relative;
display: inline-block;
width: 100%;
height: auto;
margin-bottom: 0;
}
.modal-backdrop.show {
opacity: 0.9;
z-index: 999;
}
.fdgn2 input,
.fdgn2 select,
.fdgn2 textarea {
border: 2px solid #e6e6e6 !important;
}
.form-block input:focus,
.form-block textarea:focus {
border-bottom: 2px solid #262262;
}
.form-block input {
width: 100%;
height: 50px;
padding: 0px 15px;
margin: 0px 0 15px 0;
color: #172b43;
font-size: 16px;
outline: none;
background: #fff;
border: 0;
border-bottom: 2px solid #e6e6e6;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.form-block textarea {
height: 100px;
width: 100%;
padding: 15px;
margin: 0px 0 15px 0;
color: #172b43;
font-size: 16px;
outline: none;
background: #fff;
border: 0;
border-bottom: 2px solid #e6e6e6;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.form-block .form-group {
margin-bottom: 0;
}
.form-block select {
width: 100%;
height: 50px;
padding: 0px 15px;
margin: 0px 0 15px 0;
color: #172b43;
font-size: 16px;
outline: none;
background: #fff;
border: 0;
border-bottom: 2px solid #e6e6e6;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.help-block.with-errors {
color: #ff5050;
margin: 0px 0 0 10px;
font-size: 13px;
position: relative;
bottom: 12px;
}
.messages .alert {
position: relative;
padding: 6px 25px 6px 6px;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
font-size: 14px;
}
.form-block .messages button:hover {
background-color: transparent;
}
.messages .close {
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: 0.5;
text-align: right;
position: absolute;
right: 5px;
top: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
color: #fff;
border-color: #ff1f8e;
background-color: #ff1f8e;
}
.custom-control-input:focus ~ .custom-control-label::before {
-webkit-box-shadow: 0 3px 6px rgba(91, 130, 148, 0.08);
box-shadow: 0 3px 6px rgba(91, 130, 148, 0.08);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
border-color: #ffbc80;
}
.custom-control-label::before {
position: absolute;
top: -1px;
left: -1.5rem;
display: block;
width: 20px;
height: 20px;
pointer-events: none;
content: "";
background-color: #fff;
border: #adb5bd solid 1px;
}
.custom-control-label::after {
position: absolute;
top: -3px;
left: -26px;
display: block;
width: 25px;
height: 25px;
content: "";
background: no-repeat 50%/50% 50%;
}
.custom-control {
margin-bottom: 10px;
}
.form-block label input {
height: 20px;
width: 20px;
position: relative;
top: 5px;
margin: 0 5px 0 0;
}
.fieldsets label {
position: relative;
top: -14px;
font-size: 14px;
color: #ff1f8e;
margin: 0;
padding: 0;
display: inline;
}
.custom-control label {
text-indent: -21px;
padding: 2px 0 0 21px;
font-size: 14px;
}
.form-block label a {
color: #000;
}
.form-block p.trm {
font-size: 13px;
width: 100%;
text-align: center;
margin: 10px 0 0 0;
}
.form-block p.trm i {
padding: 5px 5px 0 0;
}
.form-block button:hover {
background-color: #ff1f8e;
}
.form-block button {
width: 100%;
}
.bg-btn {
background: #ffbd84;
background: -moz-linear-gradient(left, #ffbd84 0%, #262262 100%);
background: -webkit-linear-gradient(left, #ffbd84 0%,#ff5722 100%);
background: linear-gradient(to right, #ffbd84 0%,#ff5722 100%);
-webkit-box-shadow: 0 10px 15px 0px rgb(175 0 87 / 20%);
box-shadow: 0 10px 15px 0px rgb(175 0 87 / 20%);
}
.btn-main:hover{color:#fff;}
.btn-main {
font-size: 16px;
font-weight: 400;
font-family: 'Poppins', sans-serif;
padding: 0px 32px;
line-height: 56px;
text-align: center;
outline: none;
color: #fff;
background-color: #262262;
border: none;
-webkit-border-radius: 100px;
border-radius: 100px;
display: inline-block;
position: relative;
-webkit-box-shadow: 0 10px 15px 0px rgba(233, 30, 99, .15);
box-shadow: 0 10px 15px 0px rgba(233, 30, 99, .15);
}
span.circle {
background: rgba(255, 255, 255, 0.2);
display: block;
position: absolute;
top: -10%;
right: -130px;
width: 200px;
height: 200px;
border-radius: 50%;
}
span.circle {
-webkit-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
-o-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
transition: 1.2s cubic-bezier(.17, .85, .438, .99);
}
span.circle{background: rgba(255, 255, 255, 0.2); display: block; position: absolute; top: -10%; right: -130px; width: 200px; height: 200px; border-radius: 50%;}
.lnk:hover span.circle{ top: -10%;    right: -80px;}
span.circle2{background: rgba(255, 255, 255, 0.2); display: block; position: absolute; top: -10%; right: -50px; width: 80px; height: 80px; border-radius: 50%;}

.product-dis-info {
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
    text-align: center;
}
.bg_light {
    background: #efefef;
}

.product-dis-img img{
    width:100%;
}
/**
Features area styles
*/
.features-area div[class^=col-]:nth-child(even) .feature::before {
  background: rgba(51, 57, 130, 0.9);
}

.feature {
  padding: 85px 120px;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 172, 31, 0.9);
  z-index: -1;
}

.feature__icon {
  color: #ffffff;
  margin-right: 35px;
  font-size: 60px;
  height: 65px;
  width: 65px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.feature__icon span {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.feature__icon span i {
  line-height: 65px;
}
.feature__icon span:first-child {
  top: 0;
}
.feature__icon span:last-child {
  top: 100%;
}

.feature__content {
  -ms-flex-negative: 100;
  flex-shrink: 100;
}
.feature__content h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}
.feature__content h4 a {
  color: #ffffff;
}
.feature__content p {
  margin-bottom: 0;
  color: #ffffff;
}

.feature:hover .feature__icon span:first-child {
  top: -100%;
}
.feature:hover .feature__icon span:last-child {
  top: 0;
}

@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  .feature {
    padding: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .feature {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
  }

  .feature__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20%;
  }

  .feature__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .feature {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20%;
  }

  .feature__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .feature {
    padding: 70px 12%;
  }
}
.guranteed-list{
  display: inline-block;
  color: #fff;
  font-size: 20px;
  margin-top: 15px;
}
.guranteed-list li{

}

/**
Widget Styels
*/
.widgets.sidebar-widgets {
  padding-left: 20px;
  margin-top: -60px;
  /* About Widget */
  /* Widget Search */
  /* Widget Recentpost */
  /* Widget Categories */
  /* Widget Newsletter */
  /* Widget Instafeed */
  /* Widget Social Icons */
  /* Widget Tags */
}
.widgets.sidebar-widgets .single-widget {
  margin-top: 60px;
  width: 100%;
}
.widgets.sidebar-widgets .single-widget > h6 {
  color: #303030;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.widgets.sidebar-widgets .single-widget > h6:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #f1f1f1;
}
.widgets.sidebar-widgets .single-widget > h6:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background: #6d6d6d;
}
.widgets.sidebar-widgets .single-widget > ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.widgets.sidebar-widgets .single-widget > ul li {
  padding-bottom: 25px;
}
.widgets.sidebar-widgets .single-widget > ul li:last-child {
  padding-bottom: 0;
}
.widgets.sidebar-widgets .widget-about__content {
  padding: 30px;
  background: #fafafa;
}
.widgets.sidebar-widgets .widget-about__content h6 {
  color: #2f2f2f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.widgets.sidebar-widgets .widget-about__content h6 small {
  display: block;
  font-size: 12px;
  color: #6f6f6f;
  text-transform: uppercase;
  font-weight: 400;
}
.widgets.sidebar-widgets .widget-about__content .social-icons {
  margin-top: 10px;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li a {
  color: #a0a0a0;
  font-size: 16px;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li a:hover {
  color: #423d8f;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.facebook:hover a {
  color: #3B5998;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.twitter:hover a {
  color: #00ACEE;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.google-plus:hover a {
  color: #DD4B39;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.pinterest:hover a {
  color: #C8232C;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.linkedin:hover a {
  color: #0E76A8;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.flickr:hover a {
  color: #FF0084;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.dribbble:hover a {
  color: #EA4C89;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.google:hover a {
  color: #DD4B39;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.skype:hover a {
  color: #00AFF0;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.youtube:hover a {
  color: #C4302B;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.vimeo:hover a {
  color: #86C9EF;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.yahoo:hover a {
  color: #720E9E;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.paypal:hover a {
  color: #00588B;
}
.widgets.sidebar-widgets .widget-about__content .social-icons ul li.instagram:hover a {
  color: #D6317D;
}
.widgets.sidebar-widgets .widget-search form {
  position: relative;
  margin-bottom: 0;
}
.widgets.sidebar-widgets .widget-search input {
  height: 50px;
  line-height: 50px;
  padding-right: 75px;
}
.widgets.sidebar-widgets .widget-search button {
  position: absolute;
  right: 0;
  border: none;
  outline: none;
  background-color: #423d8f;
  top: 50%;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  color: #ffffff;
  font-size: 16px;
  z-index: 1;
  width: 60px;
}
.widgets.sidebar-widgets .widget-recentpost ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.widgets.sidebar-widgets .widget-recentpost ul li {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}
.widgets.sidebar-widgets .widget-recentpost ul li:last-child {
  margin-bottom: 0;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  max-width: 100px;
  display: inline-block;
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb:before {
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(25, 25, 25, 0.65);
  position: absolute;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb:after {
  content: "";
  font-family: fontAwesome;
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  margin-left: -20px;
  position: absolute;
  z-index: 2;
  color: #d7d7d7;
  font-size: 18px;
  margin-top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb:hover:before {
  visibility: visible;
  opacity: 1;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb:hover:after {
  visibility: visible;
  opacity: 1;
  margin-top: -20px;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__content {
  padding-left: 17px;
  -ms-flex-negative: 100;
  flex-shrink: 100;
  margin-top: -8px;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__content span.date {
  color: #454545;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__content h6 {
  font-weight: 600;
  text-transform: uppercase;
  color: #2b2b2b;
  line-height: 1.4;
  margin-bottom: 0;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__content h6 a {
  display: inline-block;
  color: #2b2b2b;
}
.widgets.sidebar-widgets .widget-recentpost .widget-recentpost__content h6 a:hover {
  color: #423d8f;
}
.widgets.sidebar-widgets .widget-categories ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.widgets.sidebar-widgets .widget-categories ul li {
  line-height: 26px;
  font-weight: 400;
  color: #646464;
  text-transform: uppercase;
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
  padding-bottom: 11px;
  font-size: 15px;
}
.widgets.sidebar-widgets .widget-categories ul li:before {
  content: url(../images/icons/widget-dot.png);
  padding-right: 23px;
}
.widgets.sidebar-widgets .widget-categories ul li:first-child {
  border-top: none;
  padding-top: 0;
}
.widgets.sidebar-widgets .widget-categories ul li:last-child {
  padding-bottom: 0;
}
.widgets.sidebar-widgets .widget-categories ul li a {
  color: #646464;
}
.widgets.sidebar-widgets .widget-categories ul li a:hover {
  color: #423d8f;
}
.widgets.sidebar-widgets .widget-categories ul li span {
  float: right;
}
.widgets.sidebar-widgets .widget-newsletter form {
  position: relative;
}
.widgets.sidebar-widgets .widget-newsletter form input {
  height: 50px;
}
.widgets.sidebar-widgets .widget-newsletter form button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: calc(100% - 10px);
  border: none;
  outline: none;
  background: #303030;
  width: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.widgets.sidebar-widgets .widget-newsletter form button:hover {
  background: #423d8f;
}
.widgets.sidebar-widgets .widget-instagram > ul {
  margin-left: -2px;
  margin-top: -2px;
  margin-right: -2px;
  margin-bottom: -2px;
}
.widgets.sidebar-widgets .widget-instagram > ul > li {
  display: inline-block;
  height: 118px;
  width: 118px;
  overflow: hidden;
  padding: 2px;
  vertical-align: middle;
  position: relative;
}
.widgets.sidebar-widgets .widget-instagram > ul > li a {
  display: block;
  position: relative;
}
.widgets.sidebar-widgets .widget-instagram > ul > li a:before {
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: rgba(25, 25, 25, 0.7);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.widgets.sidebar-widgets .widget-instagram > ul > li ul.likes-comments {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  list-style: none;
  padding-left: 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  margin-top: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.widgets.sidebar-widgets .widget-instagram > ul > li ul.likes-comments li {
  display: inline-block;
  padding-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  margin: 0 5px;
  color: #fff;
}
.widgets.sidebar-widgets .widget-instagram > ul > li ul.likes-comments li span {
  padding-left: 3px;
}
.widgets.sidebar-widgets .widget-instagram > ul > li:hover a {
  z-index: 1;
}
.widgets.sidebar-widgets .widget-instagram > ul > li:hover a:before {
  visibility: visible;
  opacity: 1;
}
.widgets.sidebar-widgets .widget-instagram > ul > li:hover ul.likes-comments {
  margin-top: 0;
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.widgets.sidebar-widgets .widget-social-icon ul {
  margin-left: -5px;
  font-size: 0;
}
.widgets.sidebar-widgets .widget-social-icon ul li {
  padding: 0;
  margin-bottom: 3px;
  display: inline-block;
  margin-left: 5px;
  font-size: 20px;
}
.widgets.sidebar-widgets .widget-social-icon ul li a {
  display: block;
  background: #423d8f;
  text-align: center;
  height: 60px;
  font-size: 20px;
  line-height: 60px;
  margin-bottom: 3px;
  color: #fff;
  position: relative;
  width: 83px;
}
.widgets.sidebar-widgets .widget-social-icon ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
  -o-box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}
.widgets.sidebar-widgets .widget-social-icon ul li a > * {
  position: relative;
  z-index: 1;
}
.widgets.sidebar-widgets .widget-social-icon ul li.facebook a {
  background: #3B5998;
  border-color: #3B5998;
}
.widgets.sidebar-widgets .widget-social-icon ul li.twitter a {
  background: #00ACEE;
  border-color: #00ACEE;
}
.widgets.sidebar-widgets .widget-social-icon ul li.google-plus a {
  background: #DD4B39;
  border-color: #DD4B39;
}
.widgets.sidebar-widgets .widget-social-icon ul li.pinterest a {
  background: #C8232C;
  border-color: #C8232C;
}
.widgets.sidebar-widgets .widget-social-icon ul li.linkedin a {
  background: #0E76A8;
  border-color: #0E76A8;
}
.widgets.sidebar-widgets .widget-social-icon ul li.flickr a {
  background: #FF0084;
  border-color: #FF0084;
}
.widgets.sidebar-widgets .widget-social-icon ul li.dribbble a {
  background: #EA4C89;
  border-color: #EA4C89;
}
.widgets.sidebar-widgets .widget-social-icon ul li.google a {
  background: #DD4B39;
  border-color: #DD4B39;
}
.widgets.sidebar-widgets .widget-social-icon ul li.skype a {
  background: #00AFF0;
  border-color: #00AFF0;
}
.widgets.sidebar-widgets .widget-social-icon ul li.youtube a {
  background: #C4302B;
  border-color: #C4302B;
}
.widgets.sidebar-widgets .widget-social-icon ul li.vimeo a {
  background: #86C9EF;
  border-color: #86C9EF;
}
.widgets.sidebar-widgets .widget-social-icon ul li.yahoo a {
  background: #720E9E;
  border-color: #720E9E;
}
.widgets.sidebar-widgets .widget-social-icon ul li.paypal a {
  background: #00588B;
  border-color: #00588B;
}
.widgets.sidebar-widgets .widget-social-icon ul li.instagram a {
  background: #D6317D;
  border-color: #D6317D;
}
.widgets.sidebar-widgets .widget-social-icon ul li:hover a:before {
  opacity: 1;
  visibility: visible;
}
.widgets.sidebar-widgets .widget-tags ul {
  margin-left: -13px;
}
.widgets.sidebar-widgets .widget-tags ul li {
  display: inline-block;
  margin-left: 13px;
  padding-bottom: 18px;
}
.widgets.sidebar-widgets .widget-tags ul li a {
  display: inline-block;
  font-weight: 600;
  color: #454545;
  text-transform: uppercase;
  font-size: 14px;
  padding: 0 20px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #eeeeee;
}
.widgets.sidebar-widgets .widget-tags ul li a:hover {
  background: #423d8f;
  color: #fff;
  border-color: #423d8f;
}
.widgets.sidebar-widgets.widgets--left-side {
  padding-left: 0;
  padding-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widgets.sidebar-widgets {
    padding-left: 0;
  }
  .widgets.sidebar-widgets.widgets--left-side {
    padding-right: 0;
  }

  .widgets.sidebar-widgets .widget-social-icon ul li a {
    width: 68px;
  }

  .widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
  }

  .widgets.sidebar-widgets .widget-recentcomment > ul > li h6 {
    font-size: 15px;
  }

  .widgets.sidebar-widgets .widget-social-icon ul li {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 70px;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
  }

  .widgets.sidebar-widgets .widget-instagram > ul > li {
    height: 98px;
    width: 98px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widgets.sidebar-widgets {
    padding-left: 0;
  }
  .widgets.sidebar-widgets.widgets--left-side {
    padding-right: 0;
  }

  .widgets.sidebar-widgets .widget-social-icon ul li a {
    width: 75px;
  }

  .widgets.sidebar-widgets {
    margin-left: -15px;
    margin-right: -15px;
  }
  .widgets.sidebar-widgets .single-widget {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .widgets.sidebar-widgets .widget-recentcomment > ul > li h6 {
    font-size: 15px;
  }

  .widgets.sidebar-widgets .widget-social-icon ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .widgets.sidebar-widgets .widget-social-icon ul li {
    margin-right: 3px;
  }

  .widgets.sidebar-widgets {
    margin-top: 0;
  }

  .widget-about__thumb img {
    width: 100%;
  }

  .widgets.sidebar-widgets .widget-instagram > ul > li {
    width: 111px;
    height: 111px;
  }
}
@media only screen and (max-width: 767px) {
  .widgets.sidebar-widgets {
    padding-left: 0;
  }
  .widgets.sidebar-widgets.widgets--left-side {
    padding-right: 0;
  }

  .widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
  }

  .widgets.sidebar-widgets .widget-recentcomment > ul > li h6 {
    font-size: 15px;
  }

  .widgets.sidebar-widgets .widget-social-icon ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .widgets.sidebar-widgets .widget-social-icon ul li {
    margin-right: 3px;
  }

  .widgets.sidebar-widgets {
    margin-top: 0;
  }

  .widget-about__thumb img {
    width: 100%;
  }

  .widgets.sidebar-widgets .widget-instagram > ul > li {
    width: 115px;
    height: 115px;
  }
}
@media only screen and (max-width: 575px) {
  .widgets.sidebar-widgets .widget-recentpost .widget-recentpost__thumb {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 80px;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }

  .widgets.sidebar-widgets .widget-social-icon ul li a {
    width: 65px;
  }

  .widgets.sidebar-widgets .widget-instagram > ul > li {
    height: 98px;
    width: 98px;
  }
}

/**
Blog Details Styles
*/
.pg-blog-thumb {
  margin-bottom: 50px;
}

.pg-blog-video {
  margin-bottom: 50px;
}

h2.pg-blog-title {
  font-size: 34px;
  font-weight: 700;
  color: #303030;
}

.pg-blog-meta {
  padding-left: 0;
}
.pg-blog-meta li {
  font-size: 14px;
  font-weight: 400;
  color: #a8a8a8;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}
.pg-blog-meta li:after {
  content: "-";
  padding: 0 10px;
}
.pg-blog-meta li:last-child:after {
  display: none;
}
.pg-blog-meta li a {
  color: #a8a8a8;
}
.pg-blog-meta li a:hover {
  color: #423d8f;
}

.pg-blog-content {
  padding-bottom: 50px;
  border-bottom: 1px solid #e1e1e1;
}
.pg-blog-content ol {
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: decimal-leading-zero;
  padding-left: 0;
  list-style-position: inside;
}
.pg-blog-content ol li {
  margin-bottom: 10px;
}
.pg-blog-content img {
  margin-bottom: 20px;
}

.pg-blog-block {
  margin-top: 70px;
}
.pg-blog-block:last-of-type {
  margin-bottom: 40px;
}

.pg-blog-authorbox {
  padding: 40px;
  background: #fafafa;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.pg-blog-authoriamge {
  height: 95px;
  width: 95px;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  margin-right: 25px;
}
.pg-blog-authoriamge img {
  width: 100%;
}

.pg-blog-authordes {
  -ms-flex-negative: 100;
  flex-shrink: 100;
}
.pg-blog-authordes h6 {
  line-height: 28px;
  font-size: 16px;
  color: #5f5f5f;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.pg-blog-authordes p {
  margin-bottom: 0;
}

.pg-blog-social {
  border: 1px solid #e9e9e9;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 5px 20px;
}
.pg-blog-social h6 {
  font-size: 16px;
  font-weight: 400;
  color: #636363;
  margin-right: 10px;
  margin-bottom: 0;
}

.pg-blog-social-icons {
  margin-right: 30px;
}

.pg-blog-social-icons,
.pg-blog-tags {
  padding: 5px 0;
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.pg-blog-tags ul {
  margin-bottom: 0;
  padding-left: 0;
}
.pg-blog-tags ul li {
  display: inline-block;
  font-size: 16px;
  color: #808080;
  font-weight: 300;
}
.pg-blog-tags ul li:after {
  content: ",";
}
.pg-blog-tags ul li:last-child:after {
  display: none;
}
.pg-blog-tags ul li a {
  color: #808080;
  display: inline-block;
}
.pg-blog-tags ul li a:hover {
  color: #423d8f;
}

.pg-blog-block.commentbox form {
  margin-top: -50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pg-blog-content img.alignright {
    float: none;
    padding-left: 0;
  }

  h2.pg-blog-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pg-blog-content img.alignright {
    float: none;
    padding-left: 0;
  }

  h2.pg-blog-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .pg-blog-content img.alignright {
    float: none;
    padding-left: 0;
  }

  h2.pg-blog-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .pg-blog-content img.alignright {
    float: none;
    padding-left: 0;
  }

  h2.pg-blog-title {
    font-size: 26px;
  }
}
.social-icons ul li {
    display: inline-block;
    padding: 0 12px;
    font-size: 14px;
}
/**
Social Icons Styles
*/
.social-icons ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.social-icons ul li {
  display: inline-block;
  padding: 0 12px;
  font-size: 14px;
}
.social-icons ul li a {
  color: #ffffff;
  display: inline-block;
}
.social-icons ul li:hover a {
  color: #423d8f;
}
.social-icons ul li:first-child {
  padding-left: 0;
}
.social-icons ul li:last-child {
  padding-right: 0;
}
.social-icons ul li.facebook:hover a {
  color: #3B5998;
}
.social-icons ul li.twitter:hover a {
  color: #00ACEE;
}
.social-icons ul li.google-plus:hover a {
  color: #DD4B39;
}
.social-icons ul li.pinterest:hover a {
  color: #C8232C;
}
.social-icons ul li.linkedin:hover a {
  color: #0E76A8;
}
.social-icons ul li.flickr:hover a {
  color: #FF0084;
}
.social-icons ul li.dribbble:hover a {
  color: #EA4C89;
}
.social-icons ul li.google:hover a {
  color: #DD4B39;
}
.social-icons ul li.skype:hover a {
  color: #00AFF0;
}
.social-icons ul li.youtube:hover a {
  color: #C4302B;
}
.social-icons ul li.vimeo:hover a {
  color: #86C9EF;
}
.social-icons ul li.yahoo:hover a {
  color: #720E9E;
}
.social-icons ul li.paypal:hover a {
  color: #00588B;
}
.social-icons ul li.instagram:hover a {
  color: #D6317D;
}
.social-icons.social-icons--white ul li a {
  color: #ffffff;
}
.social-icons.social-icons--rounded ul li {
  padding: 0 8px;
}
.social-icons.social-icons--rounded ul li:first-child {
  padding-left: 0;
}
.social-icons.social-icons--rounded ul li:last-child {
  padding-right: 0;
}
.social-icons.social-icons--rounded ul li a {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #949494;
  color: #949494;
  border-radius: 100%;
  font-size: 13px;
}
.social-icons.social-icons--rounded ul li:hover a {
  background: #423d8f;
  color: #ffffff;
  border-color: #423d8f;
}
.social-icons.social-icons--rounded ul li.facebook:hover a {
  background: #3B5998;
  border-color: #3B5998;
}
.social-icons.social-icons--rounded ul li.twitter:hover a {
  background: #00ACEE;
  border-color: #00ACEE;
}
.social-icons.social-icons--rounded ul li.google-plus:hover a {
  background: #DD4B39;
  border-color: #DD4B39;
}
.social-icons.social-icons--rounded ul li.pinterest:hover a {
  background: #C8232C;
  border-color: #C8232C;
}
.social-icons.social-icons--rounded ul li.linkedin:hover a {
  background: #0E76A8;
  border-color: #0E76A8;
}
.social-icons.social-icons--rounded ul li.flickr:hover a {
  background: #FF0084;
  border-color: #FF0084;
}
.social-icons.social-icons--rounded ul li.dribbble:hover a {
  background: #EA4C89;
  border-color: #EA4C89;
}
.social-icons.social-icons--rounded ul li.google:hover a {
  background: #DD4B39;
  border-color: #DD4B39;
}
.social-icons.social-icons--rounded ul li.skype:hover a {
  background: #00AFF0;
  border-color: #00AFF0;
}
.social-icons.social-icons--rounded ul li.youtube:hover a {
  background: #C4302B;
  border-color: #C4302B;
}
.social-icons.social-icons--rounded ul li.vimeo:hover a {
  background: #86C9EF;
  border-color: #86C9EF;
}
.social-icons.social-icons--rounded ul li.yahoo:hover a {
  background: #720E9E;
  border-color: #720E9E;
}
.social-icons.social-icons--rounded ul li.paypal:hover a {
  background: #00588B;
  border-color: #00588B;
}
.social-icons.social-icons--rounded ul li.instagram:hover a {
  background: #D6317D;
  border-color: #D6317D;
}
.social-icons.social-icons--rounded.social-icons--medium ul li a {
  height: 35px;
  width: 35px;
  line-height: 36px;
}
.social-icons.social-icons--rounded-color ul li {
  padding: 0 4px;
}
.social-icons.social-icons--rounded-color ul li:first-child {
  padding-left: 0;
}
.social-icons.social-icons--rounded-color ul li:last-child {
  padding-right: 0;
}
.social-icons.social-icons--rounded-color ul li a {
  display: inline-block;
  height: 25px;
  width: 25px;
  line-height: 27px;
  text-align: center;
  border: 1px solid #cccccc;
  color: #ffffff;
  border-radius: 100%;
  font-size: 12px;
}
.social-icons.social-icons--rounded-color ul li.facebook a {
  background: #3B5998;
  border-color: #3B5998;
}
.social-icons.social-icons--rounded-color ul li.facebook:hover a {
  color: #3B5998;
}
.social-icons.social-icons--rounded-color ul li.twitter a {
  background: #00ACEE;
  border-color: #00ACEE;
}
.social-icons.social-icons--rounded-color ul li.twitter:hover a {
  color: #00ACEE;
}
.social-icons.social-icons--rounded-color ul li.google-plus a {
  background: #DD4B39;
  border-color: #DD4B39;
}
.social-icons.social-icons--rounded-color ul li.google-plus:hover a {
  color: #DD4B39;
}
.social-icons.social-icons--rounded-color ul li.pinterest a {
  background: #C8232C;
  border-color: #C8232C;
}
.social-icons.social-icons--rounded-color ul li.pinterest:hover a {
  color: #C8232C;
}
.social-icons.social-icons--rounded-color ul li.linkedin a {
  background: #0E76A8;
  border-color: #0E76A8;
}
.social-icons.social-icons--rounded-color ul li.linkedin:hover a {
  color: #0E76A8;
}
.social-icons.social-icons--rounded-color ul li.flickr a {
  background: #FF0084;
  border-color: #FF0084;
}
.social-icons.social-icons--rounded-color ul li.flickr:hover a {
  color: #FF0084;
}
.social-icons.social-icons--rounded-color ul li.dribbble a {
  background: #EA4C89;
  border-color: #EA4C89;
}
.social-icons.social-icons--rounded-color ul li.dribbble:hover a {
  color: #EA4C89;
}
.social-icons.social-icons--rounded-color ul li.google a {
  background: #DD4B39;
  border-color: #DD4B39;
}
.social-icons.social-icons--rounded-color ul li.google:hover a {
  color: #DD4B39;
}
.social-icons.social-icons--rounded-color ul li.skype a {
  background: #00AFF0;
  border-color: #00AFF0;
}
.social-icons.social-icons--rounded-color ul li.skype:hover a {
  color: #00AFF0;
}
.social-icons.social-icons--rounded-color ul li.youtube a {
  background: #C4302B;
  border-color: #C4302B;
}
.social-icons.social-icons--rounded-color ul li.youtube:hover a {
  color: #C4302B;
}
.social-icons.social-icons--rounded-color ul li.vimeo a {
  background: #86C9EF;
  border-color: #86C9EF;
}
.social-icons.social-icons--rounded-color ul li.vimeo:hover a {
  color: #86C9EF;
}
.social-icons.social-icons--rounded-color ul li.yahoo a {
  background: #720E9E;
  border-color: #720E9E;
}
.social-icons.social-icons--rounded-color ul li.yahoo:hover a {
  color: #720E9E;
}
.social-icons.social-icons--rounded-color ul li.paypal a {
  background: #00588B;
  border-color: #00588B;
}
.social-icons.social-icons--rounded-color ul li.paypal:hover a {
  color: #00588B;
}
.social-icons.social-icons--rounded-color ul li.instagram a {
  background: #D6317D;
  border-color: #D6317D;
}
.social-icons.social-icons--rounded-color ul li.instagram:hover a {
  color: #D6317D;
}
.social-icons.social-icons--rounded-color ul li:hover a {
  background: transparent;
  color: #fff;
}
