/*
Theme Name: Orbito
Theme URI: https://omanthemes.com/orbito/wp/
Author: Orientate
Author URI: http://orbito.omanthemes.com
Description: Orbito - Creative Agency WordPress Theme
Version: 1.0
License:
License URI:
*/

/*==================================
    [Table of contents]
===================================
    01. Basic Typography
    02. Section Presets
    03. Links & Buttons
*/

/*------------------------------------------------------
/  01. Basic Typography
/------------------------------------------------------*/
body, html{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #5e6371;
    letter-spacing: 0;
    font-weight: 400;
}
p{
    margin: 0 0 10px;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    color: #343c55;
    margin: 0 0 15px;
}
a{
    color: var(--theme-color);
    text-decoration: none;
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
a:hover, a:focus{
    color: #343c55;
    text-decoration: none;
    outline: 0;
}
input:focus, select:focus, textarea:focus, button:focus{
    outline: 0;
}
.jost{
    font-family: 'Jost', sans-serif;
}
:root{
    --theme-color: #f9758f;
    --theme-color-two: #00c0ff;
}

/*------------------------------------------------------
/  02. Section Presets
/------------------------------------------------------*/
.secSubTitle{
    font-size: 18px;
    line-height: 1;
    color: var(--theme-color);
    letter-spacing: 7.56px;
    margin: 0 0 11px;
}
.secTitle{
    font-size: 48px;
    line-height: 60px;
    color: #343c55;
    margin: 0;
}
.stWhite{
    color: #FFF;
}
.secDesc{
    font-size: 21px;
    color: #868b9b;
    line-height: 36px;
    margin: 0;
}
.noPaddingRight{
    padding-right: 0;
}
.noPaddingLeft{
    padding-left: 0;
}
.wpcf7 form .wpcf7-response-output{
    margin: 20px 0 0 -5px;
}

/*------------------------------------------------------
/  03. Links & Buttons
/------------------------------------------------------*/
.readMoreLink{
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: #343c55;
    font-weight: 500;
    display: inline-block;
    line-height: 1;
}
.readMoreLink i{
    font-size: 13px;
    color: var(--theme-color);
    margin-left: 11px;
    position: relative;
    top: 1px;
    transition: margin ease 350ms;
    -moz-transition: margin ease 350ms;
    -webkit-transition: margin ease 350ms;
}
.readMoreLink:hover{
    color: var(--theme-color);
}
.readMoreLink:hover i{
    margin-left: 6px;
}
.orbBtn01{
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    min-width: 173px;
    height: 54px;
    line-height: 52px;
    border-radius: 54px;
    padding: 0 15px;
    text-align: center;
    border: none;
    outline: none;
    display: inline-block;
    background: var(--theme-color);
    color: #fff;
    vertical-align: middle;
    z-index: 2;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    -webkit-transition-delay: calc((var(--n) - 1) * 0.1s);
    -moz-transition-delay: calc((var(--n) - 1) * 0.1s);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.orbBtn01.orbBtnBorder{
    -webkit-transition: all ease 0.55s;
    -moz-transition: all ease 0.55s;
    transition: all ease 0.55s;
    border: 2px solid #FFF;
    background: transparent;
    line-height: 48px;
}
.orbBtn01.orbBtnBorder:hover{
    border-color: transparent;
}
.orbBtn01 .bp-text {
  z-index: 3;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.orbBtn01 .bp-shape {
  display: inline-block;
  position: absolute;
  width: 25%;
  height: 100%;
  background: #343c55;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--b) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--b) - 1) * 0.1s);
  z-index: 1;
}
.orbBtn01.hoverBlue .bp-shape{
    background: var(--theme-color-two);
}
.orbBtn01 .bp-shape:nth-child(1) {
  --b: 1;
}
.orbBtn01 .bp-shape:nth-child(2) {
  --b: 2;
}
.orbBtn01 .bp-shape:nth-child(3) {
  --b: 3;
}
.orbBtn01 .bp-shape:nth-child(4) {
  --b: 4;
}
.orbBtn01:hover .bp-shape {
  transform: translateY(0) scale(2);
  -moz-transform: translateY(0) scale(2);
  -moz-transform: translateY(0) scale(2);
}
.orbBtn01:hover{
    color: #fff;
}
.orbVideoBtn{
    width: 139px;
    height: 139px;
    background: var(--theme-color-two);
    border-radius: 50%;
    font-size: 24px;
    color: #FFF;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.orbVideoBtn:hover{
    color: #FFF;
}
.orbVideoBtn i{
    position: relative;
    z-index: 2;
}
.orbVideoBtn:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: var(--theme-color);
    border-radius: 50%;
    
    opacity: 0;
    transform: scale(.5);
    -moz-transform: scale(.5);
    -webkit-transform: scale(.5);
    
    transition: all ease 350ms;
    -moz-transition: all ease 350ms;
    -webkit-transition: all ease 350ms;
}
.orbVideoBtn:hover:after{
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}
.orbBtn01 i{
    position: relative;
    margin: 0 0 0 9px;
    top: 3px;
}
