/**
 * Tabs Arrow Filled
 * Tabs general
 * Hide Numbers on Tabs - mobiles
 * Tabs general > 767px
 * Tabs Width Auto > 767px
 * Hide Numbers On Tabs > 767px
 * Tabs general > 1200px
 * Tabs Text Under Numbers > 1200px
 * Hide Numbers On Tabs > 1200px
 */


/*Tabs general*/

.argmc-wrapper .argmc-tabs-list {
    overflow: hidden;
}

.argmc-wrapper .argmc-tab-item {			
    font-size: 13px !important;
    line-height: 13px !important;
    text-align: center;
    text-transform: uppercase;

    border-bottom: 1px solid #c9c9c9;
    
    display: table-cell;
    position: relative;
    
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 25%;
}

.argmc-wrapper .argmc-tab-item .argmc-tab-item-outer,
.argmc-wrapper .argmc-tab-item .argmc-tab-item-inner,
.argmc-wrapper .argmc-tab-item .argmc-tab-number-wrapper,
.argmc-wrapper .argmc-tab-item .argmc-tab-number {
	line-height: inherit;
}

.argmc-wrapper .argmc-tab-item-outer {
    height: 49px;
    padding: 20px 0 0 16px;
}

.argmc-wrapper .argmc-tab-item:first-child .argmc-tab-item-outer {
    padding-left: 8px;
}

.argmc-tabs-list.six-tabs .argmc-tab-item {
    width: calc(16.66666666% - 5px);
}

.argmc-tabs-list.six-tabs .argmc-tab-item:first-child {
    width: calc(16.66666666%  - 10px);
}

.argmc-tabs-list.six-tabs .argmc-tab-item:last-child {
    width: calc(16.66666666%  + 30px);
}

.argmc-tabs-list.five-tabs .argmc-tab-item {
    width: calc(20% - 5px);
}

.argmc-tabs-list.five-tabs .argmc-tab-item:first-child {
    width: calc(20% - 13px);
}

.argmc-tabs-list.five-tabs .argmc-tab-item:last-child {
    width: calc(20% + 28px);
}

.argmc-tabs-list.four-tabs .argmc-tab-item {
    width: calc(25% - 6px);
}

.argmc-tabs-list.four-tabs .argmc-tab-item:first-child {
    width: calc(25% - 18px);
}

.argmc-tabs-list.four-tabs .argmc-tab-item:last-child {
    width: calc(25% + 30px);
}

.argmc-tabs-list.three-tabs .argmc-tab-item {
    width: calc(33.3333333333% - 8px);
}

.argmc-tabs-list.three-tabs .argmc-tab-item:first-child  {
    width: calc(33.3333333333% - 13px);
}

.argmc-tabs-list.three-tabs .argmc-tab-item:last-child  {
    width: calc(33.3333333333% + 21px);
}

.argmc-tabs-list.two-tabs .argmc-tab-item:first-child  {
    width: calc(50% - 22px);
}

.argmc-tabs-list.two-tabs .argmc-tab-item:last-child  {
    width: calc(50% + 22px);
}

.argmc-wrapper .argmc-tab-item-outer:before {    
    content: "";
    display: block;
    width: 0;
    height: 0;
    
    margin-left: 0;
    margin-right: -21px;
	
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width:  32px 0 32px 21px;
	
    position: absolute;
    top: -6px;
    right: 100%;
    z-index: 2;

    transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}

.argmc-wrapper .argmc-tab-item-outer:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
	
    border-color: transparent transparent transparent #eee;
    border-style: solid;
    border-width:  26px 0 26px 17px;
    
    margin-left: 0;
    position: absolute;
    top: 0;
    left: 100%;

    z-index: 3;

    transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}

.argmc-wrapper .argmc-tab-item-inner {
    display: inline-block;
    vertical-align: middle;
	
    position: relative;
    z-index: 100;
}

.argmc-wrapper .argmc-tab-item:first-child .argmc-tab-item-outer:before {
    display: none;
}

.argmc-wrapper .argmc-tab-item:last-child .argmc-tab-item-outer:after {
    display: none;
}

.argmc-wrapper .argmc-tab-number  {
    width: 22px;
    text-align: center;
}

.argmc-wrapper .argmc-tab-item.completed .argmc-tab-number {
    text-align: center;
}

.argmc-wrapper .number-text span {
	display: inline-block;
}

.argmc-wrapper .tab-completed-icon {
    display: none;
    margin-right: 4px;
}

.argmc-wrapper .tab-completed-icon:before {
    display: inline-block;
    font-family: "arg-mc-icons";

    font-style: normal;
    font-weight: normal;
    speak: none;

    content: '\e801';

    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;

    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-size: inherit;
    line-height: inherit;
    width: auto;
    height: auto;
    vertical-align: top;

    position: relative;
    top: -2px;
}



/*Tabs Arrow Alt - Hide arrows*/

.argmc-wrapper.hide-arrows .argmc-tabs-list .argmc-tab-item {
    display: block;
	text-align: center;
}

.hide-arrows .argmc-tabs-list .argmc-tab-item {
	float: left;
	margin-right: 0;
	border-radius: 0;
	border-bottom:  none;
	margin-right: 3px;
}

.hide-arrows .argmc-tabs-list.six-tabs .argmc-tab-item {
    width: calc(16.666666% - 3px);
	
}

.hide-arrows .argmc-tabs-list.five-tabs .argmc-tab-item {
    width: calc(20% - 3px); 
}

.hide-arrows .argmc-tabs-list.four-tabs .argmc-tab-item {
    width: calc(25% - 3px);
	
}

.hide-arrows .argmc-tabs-list.three-tabs .argmc-tab-item {
    width: calc(33.33333333% - 3px);
}

.hide-arrows .argmc-tabs-list.two-tabs .argmc-tab-item {
    width: calc(50% - 3px);
}


.hide-arrows .argmc-tab-item:last-child {
	border-right: none;
}

.argmc-wrapper.hide-arrows .argmc-tab-item-outer {
	padding-left: 0 !important;
}

.argmc-wrapper.hide-arrows .argmc-tab-item-outer::before,
.argmc-wrapper.hide-arrows .argmc-tab-item-outer::after {
	display: none;
}

.argmc-wrapper.hide-arrows .tabs-width-auto .argmc-tab-item-inner,
.argmc-wrapper.hide-arrows .tabs-equal-width .argmc-tab-item-inner {
	width: 100% !important;
	padding: 0 5px !important;
}

.argmc-wrapper.hide-arrows .argmc-tab-number {
	width: auto;
}

.argmc-wrapper.hide-arrows .argmc-tab-text,
.argmc-wrapper.hide-arrows.hide-numbers-bkg .number-text {
	font-size: 15px;
    line-height: 1;
	font-weight: normal;
    text-transform: none;
}



@media screen and (min-width: 767px) {
    
    /*Tabs general > 767px*/
		
    .argmc-wrapper .argmc-tabs-list {
        display: block;
    }

	.argmc-wrapper .argmc-tab-item,
	.argmc-wrapper .argmc-tab-item-outer {
		height: 70px;
	}
	
    .argmc-wrapper .argmc-tab-item {
        display: block;
        float: left;
        vertical-align: top;
    }

    .argmc-wrapper .argmc-tab-item-outer {
        text-align: center;
    }

    .argmc-wrapper .argmc-tab-item-outer:before {    
        margin-right: -27px;
        border-width:  41px 0 41px 27px;

        position: absolute;
        top: -6px;
    }

    .argmc-wrapper .argmc-tab-item-outer:after {
        border-width:  35px 0 35px 23px;
    }
	
	.argmc-wrapper .argmc-tab-item-outer {
		padding: 0 !important;
		text-align: center;
	}
	
	.argmc-wrapper .tabs-width-auto .argmc-tab-item-inner,
	.argmc-wrapper .tabs-equal-width .argmc-tab-item-inner {
		display: inline-block;
		vertical-align: middle;
		
		margin: 0;
		padding: 0 30px;
		
		width: -webkit-calc(100% + 30px);
		width: calc(100% + 30px);

		position: absolute;
		top: 50%;
		left: 0;
		z-index: 100;
		
		-webkit-transform: translate(0px, -50%);
		transform: translate(0px, -50%);
	}
	
	.argmc-wrapper .tabs-width-auto .argmc-tab-item-inner {
		position: relative;
	}
	
	.argmc-wrapper.tabs-text-under .argmc-tab-item-inner {
		padding: 0 40px;
		width: -webkit-calc(100% + 38px);
		width: calc(100% + 38px);
	}
	
	.argmc-wrapper .argmc-tab-item:first-child .argmc-tab-item-inner {
		width: -webkit-calc(100% + 19px);
		width: calc(100% + 19px);
	}
	
	.argmc-wrapper.tabs-default .argmc-tab-item:first-child .argmc-tab-item-inner,
	.argmc-wrapper.tabs-hide-numbers .argmc-tab-item:first-child .argmc-tab-item-inner {
		padding-left: 21px;
	}

	.argmc-wrapper .argmc-tab-item:last-child .argmc-tab-item-inner {
		width: -webkit-calc(100% + 15px);
		width: calc(100% + 15px);
	}

    .argmc-wrapper .argmc-tab-item:hover {
        cursor: not-allowed;
    }

    .argmc-wrapper .argmc-tab-item.current + .argmc-tab-item:hover, 
    .argmc-wrapper .argmc-tab-item.visited:hover {
        cursor: pointer;
    }
    
    .argmc-wrapper .argmc-tab-item.visited.current:hover {
        cursor: default;
    }

    .argmc-wrapper .argmc-tab-item.selected:hover {
        cursor: default;
    }

    .argmc-wrapper .argmc-tab-item.completed:hover {
        cursor: pointer;
    }

    .argmc-wrapper .argmc-tab-item .argmc-tab-number {
        display: inline-block;
		line-height: 23px;
		text-align: center;
		vertical-align: middle;
		
		width: 23px;
		min-width: 23px;
		min-height: 23px;
		height: 23px;
		
		color: #999;
		background: #fff;
		border-radius: 50%;
		
		transition: background 0.3s, color 0.3s;
    }
    
    .argmc-wrapper .argmc-tab-text {
        display: block;
        font-size: 11px;
        line-height: 1.25;
        padding-top: 8px;
    }
	
	.argmc-wrapper .number-text span {
		display: none;
	}
    
	
    
    /*Tabs Width Auto > 767px*/
	
    .argmc-wrapper .argmc-tabs-list.tabs-width-auto {
        display: table;
    }

    .argmc-wrapper .argmc-tabs-list.tabs-width-auto .argmc-tab-item {
        display: table-cell;
        width: auto;
        float: none;
    }



    /*Hide Numbers On Tabs > 767px*/

    .argmc-wrapper.tabs-hide-numbers .argmc-tab-item-outer {
        text-align: left;
    }
	
	.argmc-wrapper.tabs-hide-numbers .argmc-tab-text {
        padding: 0;
    }
	
    .argmc-wrapper.tabs-hide-numbers .argmc-tab-number {
        display: none;
    }
	
	
	
	/*Tabs Arrow Alt - Remove Arrows - Orientation Orizontal > 767px*/
	
	.argmc-wrapper.hide-arrows .tabs-width-auto .argmc-tab-item-inner,
	.argmc-wrapper.hide-arrows .tabs-equal-width .argmc-tab-item-inner {
		padding: 0 23px !important;
	}
	
	.argmc-wrapper.hide-arrows.hide-numbers-bkg .argmc-tab-number {
		width: auto;
		min-width: 21px;
	}
	
	
	
	/*Tabs Arrow Alt - Remove Numbers Background > 767px*/
	
	.argmc-wrapper.hide-numbers-bkg .argmc-tab-item {
		font-size: 14px !important;
	}
	
	.hide-numbers-bkg .argmc-tab-number {
		background: none !important;
	}
	
	.argmc-wrapper.hide-numbers-bkg .number-text span {
		display: inline-block;
	}
	
	.argmc-wrapper.hide-numbers-bkg .argmc-tab-number-wrapper,
	.argmc-wrapper.hide-numbers-bkg.orientation-vertical .argmc-tab-number-wrapper {
		padding-right: 0;
	}
	
	.argmc-wrapper.hide-numbers-bkg .argmc-tab-text {
		padding-top: 1px;
	}
	
	
	
	/*Tabs Arrow Alt - Show first/last arrow > 767*/
	
	.show-first-last .argmc-tabs-list.six-tabs .argmc-tab-item {
		width: calc(16.666666% - 4.5px);
	}
	
	.show-first-last .argmc-tabs-list.five-tabs .argmc-tab-item {
		width: calc(20% - 5.4px);
	}
	
	.show-first-last .argmc-tabs-list.four-tabs .argmc-tab-item {
		width: calc(25% - 6.75px);
	}
	
	.show-first-last .argmc-tabs-list.three-tabs .argmc-tab-item {
		width: calc(33.333333% - 9px);
	}
	
	.show-first-last .argmc-tabs-list.two-tabs .argmc-tab-item {
		width: calc(50% - 13.5px);
	}
	
	
	.argmc-wrapper.show-first-last .tabs-width-auto .argmc-tab-item-inner,
	.argmc-wrapper.show-first-last .tabs-equal-width .argmc-tab-item-inner {
		padding: 0 15px 0 39px !important;
	}
	
	.argmc-wrapper.show-first-last.hide-numbers-bkg .tabs-width-auto .argmc-tab-item-inner,
	.argmc-wrapper.show-first-last.hide-numbers-bkg .tabs-equal-width .argmc-tab-item-inner {
		padding: 0 12px 0 37px !important;
	}
}


@media screen and (min-width: 992px) {
	
	/*Tabs Arrow Alt - Remove arrows - Orientation Vertical > 767px*/

	.orientation-vertical .argmc-tabs-list {
		width: 300px;
		float: left;
		margin-top: 0;
	}
	
	.orientation-vertical .argmc-form-steps-wrapper {
		width: calc(100% - 300px);
		padding-left: 60px;
		float: left;
	}
	
	.argmc-wrapper.orientation-vertical .argmc-form-steps {
		padding-left: 0;
		padding-right: 0;
	}
	
	.argmc-wrapper.orientation-vertical .argmc-tab-item,
	.argmc-wrapper.orientation-vertical .argmc-tab-item-outer {
		height: 56px;
	}
	
	.argmc-wrapper.orientation-vertical .argmc-tabs-list .argmc-tab-item {
		width: 100%;
		margin: 0 0 3px 0;
		border-bottom: none;
		border-right: none;
		border-radius: 0;
	}
	
	.argmc-wrapper.orientation-vertical .argmc-tab-number-wrapper {
		display: table-cell;
		vertical-align: middle;
		padding-right: 8px;
	}
	
	.argmc-wrapper.orientation-vertical .argmc-tab-text {
		display: table-cell;
		vertical-align: middle;
		padding-top: 0;
	}

	
	
	/*Tabs Arrow Alt - Remove Numbers Background - Orientation Vertical > 992px*/
	
	.argmc-wrapper.orientation-vertical.hide-numbers-bkg .argmc-tab-item.completed .tab-completed-icon {
		margin-right: 3px;
	}
	
}


@media screen and (min-width: 1200px) {
    
    /*Tabs general > 1200px*/
    
	.argmc-wrapper .argmc-tab-item,
	.argmc-wrapper .argmc-tab-item-outer {
		height: 60px;
	}
	
	.hide-arrows.argmc-wrapper .argmc-tab-item,
	.hide-arrows.argmc-wrapper .argmc-tab-item-outer {
		height: 62px;
	}
	
    .argmc-wrapper .argmc-tab-item-outer {
        text-align: left;
    }

    .argmc-wrapper .argmc-tab-item-outer:before {    
         border-width: 37px 0 37px 26px;
         margin-right: -26px;
         position: absolute;
         top: -7px;
    }

    .argmc-wrapper .argmc-tab-item-outer:after {
        border-width: 30px 0 30px 21px;
    }
	
    .argmc-wrapper .argmc-tab-number-wrapper {
        display: table-cell;
        vertical-align: middle;
		padding-right: 8px;
    }

    .argmc-wrapper .argmc-tab-text {
        display: table-cell;
        font-size: 13px;
        line-height: 1;
        vertical-align: middle;
        padding-top: 0;
    }
	
	.argmc-wrapper .tabs-width-auto .argmc-tab-item-inner,
	.argmc-wrapper .tabs-equal-width .argmc-tab-item-inner {
		padding: 0 39px;
		width: -webkit-calc(100% + 44px);
		width: calc(100% + 44px);
	}



    /*Tabs Text Under Numbers > 1200px*/

    .argmc-wrapper.tabs-text-under .argmc-tab-item-outer  {
        text-align: center;
    }

    .argmc-wrapper.tabs-text-under .argmc-tab-number-wrapper {
        display: block;
        vertical-align: top;
    }

    .argmc-wrapper.tabs-text-under .argmc-tab-number {
        height: auto;
        margin: 0;
    }

    .argmc-wrapper.tabs-text-under .argmc-tab-text {
        display: block;
        font-size: 12px;
        padding-top: 10px;
    }

    .argmc-wrapper.tabs-text-under .tab-completed-icon {
        margin-right: 0;
    }
	
	
	/*Tabs Arrow Alt - Remove Numbers Background  > 1200px*/
	
	.argmc-wrapper.hide-numbers-bkg .argmc-tab-item.completed .tab-completed-icon {
		margin: 0 4px 0 0;
	}
	
	
	
	/*Tabs Arrow Alt - Show first/last arrow > 1200px*/
	
	.show-first-last .argmc-tabs-list.six-tabs .argmc-tab-item {
		width: calc(16.666666% - 4.3333px);
	}
	
	.show-first-last .argmc-tabs-list.five-tabs .argmc-tab-item {
		width: calc(20% - 5.2px);
	}
	
	.show-first-last .argmc-tabs-list.four-tabs .argmc-tab-item {
		width: calc(25% - 6.5px);
	}
	
	.show-first-last .argmc-tabs-list.three-tabs .argmc-tab-item {
		width: calc(33.333333% - 8.6666px);
	}
	
	.show-first-last .argmc-tabs-list.two-tabs .argmc-tab-item {
		width: calc(50% - 13px);
	}
    
}




<!DOCTYPE html>
<html lang="en">
<head>
    <!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-17526350528">
</script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'AW-17526350528');
</script>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>betenes.com</title>
</head>
<body>
    
</body>
</html>